diff --git a/dashboard/templates/base.html b/dashboard/templates/base.html
index 0ae59c8..4fa06ae 100644
--- a/dashboard/templates/base.html
+++ b/dashboard/templates/base.html
@@ -113,7 +113,7 @@
- {% trans 'Device' %}
+ {% trans 'Devices' %}
-
+
{% trans 'Lots' %}
@@ -133,11 +133,14 @@
{% for tag in lot_tags %}
{% if tag.inbox %}
-
+
+
+ {{ tag.name }}
+
{% else %}
- {% endif %}
{{ tag.name }}
+ {% endif %}
{% endfor %}
@@ -156,17 +159,17 @@
- {% trans 'Upload with JSON file' %}
+ {% trans 'Upload JSON file' %}
- {% trans 'Upload with Spreadsheet' %}
+ {% trans 'Upload Spreadsheet' %}
- {% trans 'Upload with Web Form' %}
+ {% trans 'Upload Web Form' %}
diff --git a/dashboard/views.py b/dashboard/views.py
index 01a8566..85e2a28 100644
--- a/dashboard/views.py
+++ b/dashboard/views.py
@@ -14,14 +14,13 @@ from lot.models import Lot
class UnassignedDevicesView(InventaryMixin):
template_name = "unassigned_devices.html"
- section = "Unassigned"
- title = _("Unassigned Devices")
- breadcrumb = "Devices / Unassigned Devices"
+ section = "Inbox"
+ title = _("Inbox")
+ breadcrumb = "Lot / Inbox"
def get_devices(self, user, offset, limit):
return Device.get_unassigned(self.request.user.institution, offset, limit)
-
class AllDevicesView(InventaryMixin):
template_name = "unassigned_devices.html"
section = "All"