2👍
Using redirect
shortcut:
from django.shortcuts import redirect
def yourview(request):
return redirect('/ABCDE')
Source:stackexchange.com
2👍
Using redirect
shortcut:
from django.shortcuts import redirect
def yourview(request):
return redirect('/ABCDE')