Files
digest_app/module_iam/views.py
2024-02-26 13:28:32 +05:30

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"