6 lines
126 B
Python
6 lines
126 B
Python
|
|
from django.shortcuts import redirect
|
||
|
|
|
||
|
|
# Create your views here.
|
||
|
|
def index(request):
|
||
|
|
return redirect('gallery_view_root')
|