diff --git a/ereuse_devicehub/templates/inventory/device_list.html b/ereuse_devicehub/templates/inventory/device_list.html index a165e387..249d3d17 100644 --- a/ereuse_devicehub/templates/inventory/device_list.html +++ b/ereuse_devicehub/templates/inventory/device_list.html @@ -246,7 +246,7 @@ - {{ dev.type }} {{ dev.manufacturer }} {{ dev.model }} + {{ dev.type }} {{ dev.manufacturer|d('', true) }} {{ dev.model|d('', true) }} diff --git a/ereuse_devicehub/templates/inventory/tag_detail.html b/ereuse_devicehub/templates/inventory/tag_detail.html index 331ae80c..15197118 100644 --- a/ereuse_devicehub/templates/inventory/tag_detail.html +++ b/ereuse_devicehub/templates/inventory/tag_detail.html @@ -35,7 +35,7 @@
{% if tag.device %} - {{ tag.device.manufacturer }} {{ tag.device.model }} + {{ tag.device.type }} {{ tag.device.manufacturer|d('', true) }} {{ tag.device.model|d('', true) }} {% endif %}
diff --git a/ereuse_devicehub/templates/inventory/tag_list.html b/ereuse_devicehub/templates/inventory/tag_list.html index 8653605d..b2e31d11 100644 --- a/ereuse_devicehub/templates/inventory/tag_list.html +++ b/ereuse_devicehub/templates/inventory/tag_list.html @@ -59,7 +59,7 @@ {% if tag.device %} - {{ tag.device.type }} {{ tag.device.manufacturer }} {{ tag.device.model }} + {{ tag.device.type }} {{ tag.device.manufacturer|d('', true) }} {{ tag.device.model|d('', true) }} {% endif %}