{% extends "entries/base.html" %} {% block title%} Entries list {% endblock title %} {% block page-content %} {% if entries %}

Your entries ({{ entries|length }} found)

Insert new entry.
{% for entry, match in entries %} {% endfor %}
EntryMatches
Pattern: "{{ entry.pattern }}"
Test String: "{{ entry.test_string }}"
Added: {{ entry.date_added }}
{% if match %} Group: {{ match.0 }}
Subgroups: {{ match.1|default_if_none:"none" }}
Group Dict: {{ match.2|default_if_none:"none" }} {% else %} No matches found. {% endif %}
{% else %}

You have no entries

Insert new entry.
{% endif %} {% endblock page-content %} {% block footer %} {% include "entries/footer.html" %} {% endblock footer %}