django-admin2/djadmin2/__init__.py
Daniel Greenfeld 16c9b8c3ee prep for v0.3.0
2013-05-31 10:21:02 +02:00

16 lines
303 B
Python

__version__ = '0.3.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