18 lines
388 B
Python
18 lines
388 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
# from django import template
|
|
# from django.contrib.auth.decorators import login_required
|
|
# from django.http import HttpResponse, HttpResponseRedirect
|
|
# from django.template import loader
|
|
# from django.urls import reverse
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class IndexView(TemplateView):
|
|
"""
|
|
|
|
"""
|
|
|
|
template_name = "home/main.html"
|