nuitdelinfo_2021/rescue/views.py

7 lines
145 B
Python

from django.shortcuts import render
def index(request, article_id: int):
context = {}
return render(request, "article.html", context)