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