diff --git a/dashboard/templates/unassigned_devices.html b/dashboard/templates/unassigned_devices.html
index 14085bb..8356019 100644
--- a/dashboard/templates/unassigned_devices.html
+++ b/dashboard/templates/unassigned_devices.html
@@ -25,6 +25,9 @@
diff --git a/device/models.py b/device/models.py
index a2c6ad0..22b13dc 100644
--- a/device/models.py
+++ b/device/models.py
@@ -356,6 +356,12 @@ class Device:
self.get_last_evidence()
return self.last_evidence.get_manufacturer()
+ @property
+ def updated(self):
+ """get timestamp from last evidence created"""
+ self.get_last_evidence()
+ return self.last_evidence.created
+
@property
def serial_number(self):
self.get_last_evidence()