mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-09 20:36:03 +10:00
8 lines
261 B
Python
8 lines
261 B
Python
from django.contrib import admin
|
|
from solo.admin import SingletonModelAdmin
|
|
|
|
from .models import GalleryDLDependency, GalleryDLExtractor
|
|
|
|
|
|
admin.site.register(GalleryDLDependency, SingletonModelAdmin)
|
|
admin.site.register(GalleryDLExtractor, SingletonModelAdmin) |