10 lines
No EOL
348 B
Python
10 lines
No EOL
348 B
Python
from django.views.generic import TemplateView
|
|
|
|
class CustomerDashboardView(TemplateView):
|
|
template_name = 'manager/customer/dashboard.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context['app_title'] = "Restoroo"
|
|
context['page_title'] = "Dashboard"
|
|
return context |