mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-13 03:25:49 +00:00
9 lines
232 B
Python
9 lines
232 B
Python
# Create your views here.
|
|
from django.views.generic import TemplateView
|
|
|
|
from core.auth.mixins import FormerSubscriberMixin
|
|
|
|
|
|
class GeneratorView(FormerSubscriberMixin, TemplateView):
|
|
template_name = "timetable/generator.jinja"
|