nuitdelinfo_2021/crew/views.py

7 lines
138 B
Python
Raw Normal View History

2021-12-02 21:57:32 +01:00
from django.shortcuts import render
def index(request, crew_id: int):
context = {}
return render(request, "crew.html", context)