mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-05-15 02:33:13 +00:00
10 lines
383 B
Python
10 lines
383 B
Python
|
|
from django.conf import settings
|
||
|
|
|
||
|
|
MODEL_ADMIN_ATTRS = (
|
||
|
|
'list_display', 'list_display_links', 'list_filter',
|
||
|
|
'admin', 'has_permission', 'has_add_permission',
|
||
|
|
'has_edit_permission', 'has_delete_permission',
|
||
|
|
)
|
||
|
|
|
||
|
|
ADMIN2_THEME_DIRECTORY = getattr(settings, "ADMIN2_THEME_DIRECTORY", "admin2/bootstrap")
|