Mercurial > public > sg101
view gpp/templates/weblinks/index.html @ 238:a3b47d0f4df1
Exempt the Paypal IPN view from CSRF protection for #91.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 12 Sep 2010 04:04:42 +0000 |
parents | 2baadae33f2e |
children | 7e8d2dda99e3 |
line wrap: on
line source
{% extends 'weblinks/base.html' %} {% block title %}Web Links{% endblock %} {% block weblinks_content %} <h3>Categories</h3> {% if categories %} <p>We have {{ total_links }} links in {{ categories.count }} categories.</p> <dl> {% for category in categories %} <dt><a href="{% url weblinks-view_links category=category.id sort="title" page=1 %}">{{ category.title }}</a> ({{ category.count }})</dt> <dd><p>{{ category.description }}</p></dd> {% endfor %} </dl> {% endif %} {% endblock %}