django-admin2/djadmin2/__init__.py

14 lines
217 B
Python
Raw Normal View History

2013-05-19 08:28:37 +00:00
__version__ = '0.2.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
2013-05-18 14:10:17 +00:00
default = core.Admin2()