view templates/licenses/index.djhtml @ 90:eb3371142f4f

Remove inheriting from whitebox.djhtml for template files
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:48:14 -0400
parents ba2dad0d7f2a
children
line wrap: on
line source

{% extends "base.djhtml" %}

{% block boxtitle %}
Free licenses 
{% endblock boxtitle %}

{% block boxcontents %}
<p class="explanation">
The following are the licenses available in Agora. Click on the
license title for the text license itself.
</p>
<dl>
  {% for license in licenses %}
  <dt>
    <a href="{% url agora.apps.free_license.views.show_license license%}">
      {{license.name}}
    </a>
  </dt>
  <dd>{{license.description|safe|linebreaks}}</dd>
  {% endfor %}
</dl>
{% endblock boxcontents %}