{% extends "base/base.html" %} {% load static %} {% block page_heading %} Tags {% endblock page_heading %} {% block main_content %}
Tag filtering form:
{% csrf_token %} {{ text_field_form.as_p }}


You are filtering for tags containing “{{ tag_filter_text }}” with strict matching {{ tag_filter_strict }}.

Papers by tags:

{% for id, tags in papers.items %} {% endfor %}
Paper ID Matching Tags
{{ id.paper_number }} {% for tag in tags %} {% if tag %} {{ tag.text }}
{% endif %} {% endfor %}

All tags:

{% for tag, count in tag_counts.items %} {% endfor %}
Tags Number of uses
{% if tag.text %} {{ tag.text }}
{% endif %}
{{ count }}
{% endblock main_content %}