view gpp/templates/downloads/index.html @ 199:217119c87a06

Fix #72: update to 1.1.7 of the MarkItUp! editor.
author Brian Neal <bgneal@gmail.com>
date Sun, 11 Apr 2010 18:56:30 +0000
parents 2baadae33f2e
children 27bee3ac85e6
line wrap: on
line source
{% extends 'base.html' %}
{% load downloads_tags %}
{% block title %}Downloads{% endblock %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" />
{% endblock %}
{% block content %}
<h2>Downloads</h2>
{% downloads_navigation %}
<h3>Categories</h3>
{% if categories %}
<p>We have {{ total_dls }} download{{ total_dls|pluralize }} in {{ categories.count }} categories.</p>
<dl>
{% for category in categories %}
<dt>
<a href="{% url downloads-category category=category.pk sort="title" page=1 %}">{{ category.title }}</a>
({{ category.count }})
</dt>
<dd><p>{{ category.description }}</p></dd>
{% endfor %}
</dl>
{% endif %}
{% endblock %}