{% extends 'base.html' %} {% load custom_tags %} {% block inline_css %} {{block.super}} {% include 'tag/list.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block title %} Tags {% if tag_search_form.query.data %} > Search: '{{ tag_search_form.query.data }}' {% endif %} {% endblock %} {% block content %}
Search: {{ tag_search_form.query }}
{% block search_settings %} {% endblock %}
{% block search_results %}
{% with sort=request.GET.sort %} Sort: name | frequency {% endwith %}
{% include 'tag/paginated_list.html' with tag_page=tag_page %} {% endblock %}
{% endblock %}