{% extends 'base.html' %} {% load helpers %} {% block title %} Announcements {% endblock %} {% block content %}
{% if request.user.is_authenticated and table_config_form %} Add {% endif %}

Announcements

{% if permissions.change or permissions.delete %}
{% csrf_token %}
{% else %} {% include table_template|default:'responsive_table.html' %} {% endif %} {% include 'inc/paginator.html' with paginator=table.paginator page=table.page%}
{% if table_config_form %} {% include 'inc/table_config_form.html' %} {% endif %}
{% if filter_form %}
{% include 'inc/search_panel.html' %}
{% endif %}
{% endblock %}