mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-17 14:40:27 +00:00
16 lines
303 B
Python
16 lines
303 B
Python
__version__ = '0.4.0'
|
|
|
|
__author__ = 'Daniel Greenfeld & Contributors'
|
|
|
|
VERSION = __version__ # synonym
|
|
|
|
# Default datetime input and output formats
|
|
ISO_8601 = 'iso-8601'
|
|
|
|
from . import core
|
|
from . import types
|
|
|
|
|
|
default = core.Admin2()
|
|
ModelAdmin2 = types.ModelAdmin2
|
|
Admin2Inline = types.Admin2Inline
|