nuitdelinfo_2021/rescue/views.py

8 lines
145 B
Python
Raw Normal View History

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