6 lines
148 B
Python
6 lines
148 B
Python
from django.shortcuts import render
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class Index(TemplateView):
|
|
template_name="event/index.html"
|