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 @@ {% endfor %} @@ -156,17 +159,17 @@ 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"