mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-03 05:48:44 +00:00
Adds site settings and users to django admin
This commit is contained in:
parent
c8348606da
commit
1f8ac546fa
1 changed files with 6 additions and 0 deletions
6
bookwyrm/admin.py
Normal file
6
bookwyrm/admin.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
''' models that will show up in django admin for superuser '''
|
||||||
|
from django.contrib import admin
|
||||||
|
from bookwyrm import models
|
||||||
|
|
||||||
|
admin.site.register(models.SiteSettings)
|
||||||
|
admin.site.register(models.User)
|
Loading…
Reference in a new issue