List feature
+ implemented list feature + implemented category feature
This commit is contained in:
parent
5877b83424
commit
32d60f51ac
23 changed files with 210 additions and 60 deletions
|
|
@ -105,7 +105,7 @@ AUTH_PASSWORD_VALIDATORS = [
|
|||
# Internationalization
|
||||
# https://docs.djangoproject.com/en/2.1/topics/i18n/
|
||||
|
||||
LANGUAGE_CODE = 'en-us'
|
||||
LANGUAGE_CODE = 'de'
|
||||
|
||||
TIME_ZONE = 'Europe/Berlin'
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ urlpatterns = [
|
|||
path('admin/', admin.site.urls),
|
||||
path('accounts/', include('django.contrib.auth.urls')),
|
||||
path('', include('user_manager.urls')),
|
||||
path('add/', include('object_adder.urls'))
|
||||
path('add/', include('object_adder.urls')),
|
||||
path('list/', include('object_lister.urls'))
|
||||
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue