{% extends 'base.html' %} {% load i18n %} {% block title %}{{ block.super }} {% trans 'Glossary' %}{% endblock %} {% block content %}

{% trans 'Glossary' %}

{% for entry in entries %} {% ifchanged %}{{ entry.title.0 }} {% endifchanged %} {% endfor %}

{% for entry in entries %} {% ifchanged %}

{{ entry.title.0 }}


{% endifchanged %} {% include 'widgets/definition.html' with tag=entry.title acronym=entry.acronym definition=entry.description %}
{% endfor %}
Top {% endblock content %}