mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 11:12:20 +01:00
7 lines
179 B
Python
7 lines
179 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
@login_required
|
|
def index(request):
|
|
return render(request, 'queues/queue.html')
|