{% extends "alertprofiles/base_list.html" %} {% block captioncontent %} Filter groups {% endblock %} {% block theadcols %} {% ifequal order_by "name" %} Name Sorted ascending {% else %} Name {% ifequal order_by "-name" %} Sorted descending {% endifequal %} {% endifequal %} {% ifequal order_by "owner" %} Owner Sorted ascending {% else %} Owner {% ifequal order_by "-owner" %} Sorted descending {% endifequal %} {% endifequal %} {% ifequal order_by "description" %} Description Sorted ascending {% else %} Description {% ifequal order_by "-description" %} Sorted descending {% endifequal %} {% endifequal %} {% endblock %} {% block tbodycontent %} {% for filter in object_list %} {{ filter.name }} {% if filter.owner %}Private{% else %}Public{% endif %} {{ filter.description }} {% endfor %} {% endblock %}