6 lines
138 B
Python
6 lines
138 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request, crew_id: int):
|
|
context = {}
|
|
return render(request, "crew.html", context)
|