First version of calendar

This commit is contained in:
2022-06-28 16:54:43 +03:00
parent 23d55ed995
commit 8939446636
15 changed files with 128 additions and 0 deletions
+2
View File
@@ -32,6 +32,8 @@ ALLOWED_HOSTS = [env('HOST_1')]
# Application definition
INSTALLED_APPS = [
'helloworld',
'faerun_calendar',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
+1
View File
@@ -19,4 +19,5 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('helloworld.urls')),
path('calendar/', include('faerun_calendar.urls')),
]