diff --git a/dashboard/templates/unassigned_devices.html b/dashboard/templates/unassigned_devices.html
index c21a2be..8d894ed 100644
--- a/dashboard/templates/unassigned_devices.html
+++ b/dashboard/templates/unassigned_devices.html
@@ -33,7 +33,19 @@
- Title
+ select
+ |
+
+ shortid
+ |
+
+ type
+ |
+
+ manufacturer
+ |
+
+ model
|
@@ -45,9 +57,18 @@
- {{ dev.type }} {{ dev.manufacturer }} {{ dev.model }}
+ {{ dev.shortid }}
|
+
+ {{ dev.type }}
+ |
+
+ {{ dev.manufacturer }}
+ |
+
+ {{ dev.model }}
+ |
{% endfor %}
diff --git a/device/models.py b/device/models.py
index c9e04ec..1bf4bcc 100644
--- a/device/models.py
+++ b/device/models.py
@@ -27,6 +27,7 @@ class Device:
# the id is the chid of the device
self.id = kwargs["id"]
self.pk = self.id
+ self.shortid = self.pk[:6]
self.algorithm = None
self.owner = None
self.annotations = []
diff --git a/device/templates/details.html b/device/templates/details.html
index b757b1f..37f7487 100644
--- a/device/templates/details.html
+++ b/device/templates/details.html
@@ -4,7 +4,7 @@
{% block content %}
-
{{ object.id }}
+ {{ object.shortid }}