You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
835 B
Python
23 lines
835 B
Python
from django.views.generic import TemplateView
|
|
|
|
from booking.models import Booking
|
|
from containers.models import Container
|
|
from preinfo.models import Preinfo
|
|
|
|
|
|
class EmployeeDashboardView(TemplateView):
|
|
template_name = 'employee-dashboard-content.html'
|
|
extra_context = {
|
|
'title': 'Employee Dashboard',
|
|
'description': 'This is the depot employee dashboard page.',
|
|
}
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
containers = Container.objects.filter(expedited=False).count()
|
|
preinfos = Preinfo.objects.filter(received=False).count()
|
|
bookings = Booking.objects.filter(status='active').count()
|
|
context['containers'] = containers
|
|
context['preinfos'] = preinfos
|
|
context['bookings'] = bookings
|
|
return context |