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.
14 lines
422 B
Python
14 lines
422 B
Python
from django.shortcuts import render
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class BarrierDashboardView(TemplateView):
|
|
template_name = 'barrier/barrier-dashboard.html'
|
|
extra_context = {
|
|
'title': 'Client Dashboard',
|
|
'description': 'This is the client dashboard page.',
|
|
}
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
return render(request, self.template_name, self.extra_context) |