5 lines
101 B
Python
5 lines
101 B
Python
from django.shortcuts import redirect
|
|
|
|
def redirect_to_spanish(request):
|
|
return redirect('/es/')
|