7 lines
198 B
Python
7 lines
198 B
Python
from django.shortcuts import render
|
|
from django.views import generic
|
|
|
|
# Create your views here.
|
|
|
|
class DashboardView(generic.TemplateView):
|
|
template_name = "base_structure/layout/dashboard.html" |