Merge branch 'guntherweissenbaeck/issue63'
This commit is contained in:
commit
8c27709802
17 changed files with 199 additions and 4 deletions
|
@ -25,7 +25,7 @@ JAZZMIN_SETTINGS = {
|
|||
"search_model": [
|
||||
"aviary.Aviary",
|
||||
"bird.FallenBird",
|
||||
"bird.User",
|
||||
# "bird.User",
|
||||
],
|
||||
# Field name on user model that contains avatar ImageField/URLField/Charfield or a callable that receives the user
|
||||
# "user_avatar": None,
|
||||
|
|
|
@ -83,6 +83,7 @@ INSTALLED_APPS = [
|
|||
# -----------------------------------
|
||||
"aviary",
|
||||
"bird",
|
||||
"contact",
|
||||
"costs",
|
||||
"export",
|
||||
]
|
||||
|
|
|
@ -7,6 +7,7 @@ urlpatterns = [
|
|||
path("", views.bird_all, name="index"),
|
||||
path("aviary/", include("aviary.urls")),
|
||||
path("bird/", include("bird.urls")),
|
||||
path("contacts/", include("contact.urls")),
|
||||
path("costs/", include("costs.urls")),
|
||||
path("export/", include("export.urls")),
|
||||
# Admin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue