初投稿&個人用記事なのでショボいです…
Markdownなどの確認も兼ねて記事を作成しています。
polls/template/polls/detail.html
{{ text }}
polls/views.py
from django.shortcuts import render
def detail(request):
test_text = "abc"
render(request, "polls/index.html", {"text": test_text})