view sg101/templates/downloads/download_summary.html @ 1152:fa5d03c5c28c

Finish (?) converting downloads to V3 design.
author Brian Neal <bgneal@gmail.com>
date Sun, 18 Dec 2016 21:19:34 -0600
parents 02ae9a4a846a
children
line wrap: on
line source
{% extends 'v3/base.html' %}
{% load downloads_tags %}
{% load static from staticfiles %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<h2>Downloads</h2>
{% include 'downloads/navigation.html' %}
<h3>{{ title }}</h3>

{% if page.object_list %}
{% include 'core/v3/pagination.html' %}
<dl>
{% for download in page.object_list %}
   {% include 'downloads/download.html' %}
{% endfor %}
</dl>
{% include 'core/v3/pagination.html' %}
{% else %}
<p>No downloads available at this time.</p>
{% endif %}
{% endblock %}
{% block custom_js %}
<script type="text/javascript" src="{% static "js/rating.js" %}"></script>
<script type="text/javascript" src="{% static "js/downloads-get.js" %}"></script>
{% endblock %}