diff --git a/ereuse_devicehub/templates/inventory/device_detail.html b/ereuse_devicehub/templates/inventory/device_detail.html
index 051cde2a..f18c1e0e 100644
--- a/ereuse_devicehub/templates/inventory/device_detail.html
+++ b/ereuse_devicehub/templates/inventory/device_detail.html
@@ -30,6 +30,10 @@
Web
+
+
+
+
@@ -73,6 +77,50 @@
+
+
Incoming Lots
+
+
+ {% for lot in device.lots %}
+ {% if lot.is_incoming %}
+
+ {% endif %}
+ {% endfor %}
+
+
+
Outgoing Lots
+
+
+ {% for lot in device.lots %}
+ {% if lot.is_outgoing %}
+
+ {% endif %}
+ {% endfor %}
+
+
+
Temporary Lots
+
+
+ {% for lot in device.lots %}
+ {% if lot.is_temporary %}
+
+ {% endif %}
+ {% endfor %}
+
+
+