summaryrefslogtreecommitdiff
path: root/procurement/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'procurement/views.py')
-rw-r--r--procurement/views.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/procurement/views.py b/procurement/views.py
index 8891f89..1516455 100644
--- a/procurement/views.py
+++ b/procurement/views.py
@@ -1,7 +1,7 @@
from django.views.generic import FormView, TemplateView
from procurement.forms import ComponentSearchForm
-from procurement.models import Supplier, Component
+from procurement.models import Supplier, Component, Representative
class ComponentSearchView(FormView):
@@ -20,6 +20,11 @@ class ComponentSearchView(FormView):
suppliers_last_updated = ''
try:
+ representatives_last_updated = Representative.objects.latest('updated').time_since_update
+ except Representative.DoesNotExist:
+ representatives_last_updated = ''
+
+ try:
components_last_updated = Component.objects.latest('updated').time_since_update
except Component.DoesNotExist:
components_last_updated = ''
@@ -32,6 +37,8 @@ class ComponentSearchView(FormView):
'suppliers_last_updated': suppliers_last_updated,
'component_count': Component.objects.all().count(),
'components_last_updated': components_last_updated,
+ 'representative_count': Representative.objects.all().count(),
+ 'representatives_last_updated': representatives_last_updated,
})
return context