Skip to content

0.8.0

Compare
Choose a tag to compare
@crccheck crccheck released this 10 May 03:58
· 77 commits to master since this release
  • Renames objectactions to change_actions
  • Removes get_object_actions (see below)
  • Adds changelist_actions for creating action tools in the change list view too
  • Adds get_change_actions and get_changelist_actions

Breaking changes

  • Deleted get_object_actions(request, context, **kwargs). If you used this
    before, use get_change_actions(request, object_id, form_url) instead. To
    get at the original object, instead of context['original'], you can use
    self.model.get(pk=object_id), self.get_object(request, object_id), etc.
    This isn't as convenient as it used to be, but now it uses the officially
    documented way to add extra context to admin views.
    https://docs.djangoproject.com/en/dev/ref/contrib/admin/#other-methods

  • Renamed objectactions. In your admin, instead of defining your actions in
    the objectactions attribute, use change_actions.