diff --git a/README.rst b/README.rst index c0a5a19..ec950e2 100644 --- a/README.rst +++ b/README.rst @@ -54,10 +54,11 @@ Our goal is to make this API work: # myapp/admin2.py # Import your custom models - from .models import Post, Comment from django.contrib.auth.forms import UserCreationForm, UserChangeForm from django.contrib.auth.models import User + from .models import Post, Comment + import djadmin2 @@ -113,6 +114,23 @@ Screenshots History ========= +0.4.0 (2013-06-30) + + * Implemented both Function- and Class-based Action views + * Implemented ModelAdmin2.list_display + * Implemented ModelAdmin2.fieldsets + * Dropdown widget now displays the selected choice + * Added support for callables in ModelAdmin2.list_display + * Added screenshots to README + * Added second example project + * Fixed breadcrumbs + * Default theme: Proper closing of template and media blocks + * Default theme: Standardized indentation in default theme templates + * Default theme: Pointed to CDN for JQuery + * Default theme: Added basic style for login form + * Default theme: Internationalized all text strings + + 0.3.0 (2013-05-31) * HTML5 forms via floppyforms. diff --git a/djadmin2/__init__.py b/djadmin2/__init__.py index c63db75..1240f98 100644 --- a/djadmin2/__init__.py +++ b/djadmin2/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.3.0' +__version__ = '0.4.0' __author__ = 'Daniel Greenfeld & Contributors' diff --git a/docs/conf.py b/docs/conf.py index b36ade6..cfe4730 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ copyright = u'2013, Daniel Greenfeld' # built documents. # # The short X.Y version. -version = '0.3' +version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.3.0' +release = '0.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 06ceabc..a786bfb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -29,10 +29,11 @@ Our goal is to make this API work: # myapp/admin2.py # Import your custom models - from .models import Post, Comment from django.contrib.auth.forms import UserCreationForm, UserChangeForm from django.contrib.auth.models import User + from .models import Post, Comment + import djadmin2