view templates/licenses/index.djhtml @ 37:ba2dad0d7f2a

Do license framework (need to create an SQL fixture for them)
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Wed, 07 Jul 2010 15:35:56 -0500
parents
children eb3371142f4f
line wrap: on
line source

{% extends "whitebox.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 %}