alesdotio / django-admin-shortcuts

Add simple and pretty shortcuts to the django admin homepage.
Other
205 stars 53 forks source link

admin_shortcuts_tags.py - fix for url_extra option #43

Open friedgit opened 1 year ago

friedgit commented 1 year ago
  1. 'url_extra' could only ever take effect if the 'url_name' tag was specified rather than the 'url' tag, due I believe to incorrect indentation in the line in 'admin_shortcuts_tags.py' where the 'url_extra' tag is appended to the 'url'.

  2. 'url_extra' could only be specified as a string to be appended, whereas one might expect to be able to specify a function, as in 'count' or 'count_new', which permit either a string or a function.

This change fixes both issues