タイトル: templateへの遷移方法
SEOタイトル: djangoのtemplateへの遷移方法【Python】
単なるリダイレクト
from django.shortcuts import redirect return redirect('index.html') |
パラメータあり遷移
from django.shortcuts import render def index(request): item_list = ['a', 'b', 'c'] return render(request, 'index.html', context) |