7 lines
145 B
Python
7 lines
145 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request, article_id: int):
|
|
context = {}
|
|
return render(request, "article.html", context)
|
|
|