mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-17 06:30:25 +00:00
19 lines
395 B
Python
19 lines
395 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division, absolute_import, unicode_literals
|
|
|
|
__version__ = '0.5.1'
|
|
|
|
__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
|