mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-29 05:55:28 -04:00
remove tags field from Machine admin
This commit is contained in:
parent
df79b8e038
commit
aaf069fab0
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@ class CoreConfig(AppConfig):
|
|||
name = 'core'
|
||||
|
||||
def ready(self):
|
||||
"""Register the archivebox.core.admin_site as the main django admin site"""
|
||||
from core.admin_site import register_admin_site
|
||||
register_admin_site()
|
||||
|
||||
|
@ -17,5 +18,6 @@ class CoreConfig(AppConfig):
|
|||
|
||||
@abx.hookimpl
|
||||
def register_admin(admin_site):
|
||||
"""Register the core.models views (Snapshot, ArchiveResult, Tag, etc.) with the admin site"""
|
||||
from core.admin import register_admin
|
||||
register_admin(admin_site)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue