Basic functionality ready.
This commit is contained in:
0
home/__init__.py
Normal file
0
home/__init__.py
Normal file
6
home/apps.py
Normal file
6
home/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class HomeConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'home'
|
||||
0
home/migrations/__init__.py
Normal file
0
home/migrations/__init__.py
Normal file
3
home/models.py
Normal file
3
home/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
5
home/views.py
Normal file
5
home/views.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.shortcuts import redirect
|
||||
|
||||
# Create your views here.
|
||||
def index(request):
|
||||
return redirect('gallery_view_root')
|
||||
Reference in New Issue
Block a user