You can override the template for a specific app by first copying it to a template folder respectful to that app See this: http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates
On Mon, Feb 8, 2010 at 8:16 AM, djangonoob <jacquesnel1...@gmail.com> wrote: > Hi all. > > If someone could please help me as I am very new to django and getting > desperate for help. > > The issue is as follows: > > For one of my apps in 'INSTALLED APPS' I need to add a link in the > admin section that will cause the stats to be downloaded. The URL for > this link is /questionnaire/export_csv. How can I define such a link > please? > > Thank you for your help. > > This is the template but as you will see this creates the link for the > questionnaire/export_csv, but it does create the link for every single > app instead of just for the Questionnaire app. > > admin_index.py > {% extends "admin/base_site.html" %} > {% load i18n %} > > {% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/ > base.css{% endblock %} > > {% block coltype %}colMS{% endblock %} > > {% block bodyclass %}{% endblock %} > > {% block breadcrumbs %}{% endblock %} > > {% block content %} > <div id="content-main"> > > {% if app_list %} > {% for app in app_list %} > <div class="module"> > <table summary="{% blocktrans with app.name as name %}Models > available in the {{ name }} application.{% endblocktrans %}"> > <caption><a href="{{ app.app_url }}" class="section">{% > blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</a></ > caption> > {% for model in app.models %} > <tr> > {% if model.perms.change %} > <th scope="row"><a > href="{{ model.admin_url }}">{{ model.name }}</a></th> > {% else %} > <th scope="row">{{ model.name }}</th> > {% endif %} > > {% if model.perms.add %} > <td><a href="{{ model.admin_url }}add/" > class="addlink">{% trans 'Add' %}</a></td> > {% else %} > <td> </td> > {% endif %} > > {% if model.perms.change %} > <td><a href="{{ model.admin_url }}" > class="changelink">{% trans 'Change' %}</a></td> > {% else %} > <td> </td> > {% endif %} > </tr> > {% endfor %} > <tr><td colspan='2'><A href='/questionnaire/export_csv'>Export-to- > CSV</a></td></tr> > </table> > </div> > {% endfor %} > {% else %} > <p>{% trans "You don't have permission to edit anything." %}</p> > {% endif %} > </div> > {% endblock %} > > {% block sidebar %} > <div id="content-related"> > <div class="module" id="recent-actions-module"> > <h2>{% trans 'Recent Actions' %}</h2> > <h3>{% trans 'My Actions' %}</h3> > {% load log %} > {% get_admin_log 10 as admin_log for_user user %} > {% if not admin_log %} > <p>{% trans 'None available' %}</p> > {% else %} > <ul class="actionlist"> > {% for entry in admin_log %} > <li class="{% if entry.is_addition %}addlink{% endif %}{% > if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %} > deletelink{% endif %}">{% if not entry.is_deletion %}<a > href="{{ entry.get_admin_url }}">{% endif %}{{ entry.object_repr| > escape }}{% if not entry.is_deletion %}</a>{% endif %}<br /><span > class="mini quiet">{% filter capfirst %}{% trans > entry.content_type.name %}{% endfilter %}</span></li> > {% endfor %} > </ul> > {% endif %} > </div> > </div> > {% endblock %} > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.