- Add support for specifying list column titles through a dictionary specified as the class variable - list_display_lables
- Fix mispelt context variable item_actions (was referred to as itemactions)
- Fix formatting errors in README.rst.
- Move changelog to HISTORY.rst and include it in setup long_description through embedded script.
- Fix more errors in setup.py that stopped pip install from working
- Fix errors in setup.py that stopped pip install from working
- Fix errors in setup.py.
- Update status to '4 - Beta'.
- Use django-pure-pagination for pagination. This provides margin page numbers which provides a nice UX for listing tables with very large amounts of data, number of pages for which exceed the available width in the screen.
- Move delete operation into an independent GET action through the '?o=delete' parameter.
- Action buttons changed to use buttons grouping them into a btn-group.
- Added colors to the buttons indicating the severity of the action's outcome.
- Changed table css classes to be specified as view setting provided through RequestContext.
- Refactor cryptic flag names to more friendly names. Eg.: can_delete() has been changed to item_deletable().
- Global flags can_create, can_edit and can_delete has been replaced by enable_create, enable_edit & enable_delete respectively.
- Add support for view to customize page titles by specifying a class variable 'pagetitle'. This title will be used by default and if not specified the model's verbose_name_plural will be set as the title in the context.
- Fix media property such that it only returns media fragments necessary for the current CRUD operation.
- Fix incorrect arguments to can_delete() method call.
- When the derived class specifies a custom form by overriding the get_form() method, inline editing/addition of RelatedField objects is not available. This version includes a fix for this.
- Support for per item editing control through the item property item.can_edit, which should return a boolean indicating if editing is allowed. Defaults to True, if the property is missing.
- Support for per item deletion control through the item property item.can_delete, which should return a boolean indicating if deletion is allowed. Defaults to True, if the property is missing.
- Support for inline editing/addition of RelatedField objects through a popup window. Note that base template has to be designed to accommodate this feature by removing the embellishments that adorn a regular page.
- Initial release