Hooboy changes. Store e stuff now has DB so I can put budget in (long overdue), plus make closed dates dynamic. Also added explanation of MD RSS, and some other things like pulling out dud nav entries. And... I think maybe navs have DB now too? IDK

This commit is contained in:
2022-05-27 03:45:44 +10:00
parent c293ba7bf7
commit 17f3c5608e
6 changed files with 14 additions and 8 deletions

View File

@@ -35,6 +35,7 @@ ALLOWED_HOSTS = [n.strip() for n in conf['ALLOWED_HOSTS'].split(',')]
INSTALLED_APPS = [
'main.apps.MainConfig',
'books.apps.BooksConfig',
'nerdshope.apps.NerdshopeConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',

View File

@@ -21,5 +21,6 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('books/',include('books.urls')),
path('comment/',include('comment.urls')),
path('nerdshope/',include('nerdshope.urls')),
path('', include('main.urls')),
]