{% extends "base.html" %} {% load glossary_tags %} {% load cache %} {% block title %}Glossary{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

Glossary terms

{% cache 500 abc_nav %} {% endcache %}

{% if query %} {% if not object_list %}

No results found

{% endif %} {% endif %}
{% for term in object_list %}
{{ term.title }}
{% for synonym in term.synonyms.all %}
{{ synonym.title }}
{% endfor %}
{{ term.description }}
{% endfor %}
{% if is_paginated %} {% if has_previous %} previous {% endif %} Page {{ page }} of {{ pages }}. {% if has_next %} next {% endif %} {% endif %}
{% endblock %}