django-admin2/djadmin2/__init__.py

17 lines
303 B
Python
Raw Normal View History

2013-05-31 08:21:02 +00:00
__version__ = '0.3.0'
2013-05-14 12:28:43 +00:00
2013-05-19 15:23:58 +00:00
__author__ = 'Daniel Greenfeld & Contributors'
2013-05-14 12:28:43 +00:00
2013-05-17 10:59:38 +00:00
VERSION = __version__ # synonym
2013-05-14 12:28:43 +00:00
2013-05-17 10:59:38 +00:00
# Default datetime input and output formats
ISO_8601 = 'iso-8601'
2013-05-19 08:09:12 +00:00
from . import core
from . import types
2013-05-18 14:10:17 +00:00
default = core.Admin2()
ModelAdmin2 = types.ModelAdmin2
Admin2Inline = types.Admin2Inline