8 lines
194 B
Python
8 lines
194 B
Python
from django.shortcuts import render
|
|
from django.views.generic import TemplateView, ListView
|
|
|
|
# Create your views here.
|
|
|
|
class IndexView(TemplateView):
|
|
template_name = "apps/core/index.html"
|