view templates/licenses/index.djhtml @ 193:fe51ec4eccc1

Added necessary css and Javascript code for the comment system
author ahsanalishahid <ahsan.ali.shahid@gmail.com>
date Tue, 02 Jul 2013 02:01:02 +0500
parents eb3371142f4f
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 %}