mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 19:52:20 +01:00
7 lines
197 B
Python
7 lines
197 B
Python
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class QueueView(LoginRequiredMixin, TemplateView):
|
|
template_name = "queues/queue.html"
|