Re: Using {% url somenamedview %} in a custom page extending admin templates

2011-08-16 Thread Tom Evans
On Mon, Aug 15, 2011 at 8:37 PM, Thomas Weholt wrote: > My urls.py for my app: > > urlpatterns = patterns('', >    url(r'^geocoding/$', geocoding, name='geocoding'), > ) > > I've extended the change_list.html template based on the standard > change_list.html and added this piece : > > {% block con

Using {% url somenamedview %} in a custom page extending admin templates

2011-08-15 Thread Thomas Weholt
My urls.py for my app: urlpatterns = patterns('', url(r'^geocoding/$', geocoding, name='geocoding'), ) I've extended the change_list.html template based on the standard change_list.html and added this piece : {% block content %} {% block object-tools %} {% if has_add_permission