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