{% extends "base.html" %} {% block tab_title %}{{ gettext('All Sources') }}{% endblock %} {% block body %}

{{ gettext('All Sources') }}

{% if unstarred or starred %}
{{ gettext('Delete') }} {% with %} {% set modal_data = { "modal_id": "delete-sources-modal", } %} {% include '_sources_confirmation_modal.html' %} {% endwith %} {% with %} {% set modal_data = { "modal_id": "delete-sources-confirm-modal", } %} {% include '_sources_confirmation_final_modal.html' %} {% endwith %}
{% if starred %} {% for source in starred %} {% with %} {% set loop_index = loop.index %} {% include '_source_row.html' %} {% endwith %} {% endfor %} {% endif %} {% if unstarred %} {% for source in unstarred %} {% with %} {% set loop_index = loop.index %} {% include '_source_row.html' %} {% endwith %} {% endfor %} {% endif %}
{% else %}

{{ gettext('There are no submissions.') }}

{% endif %}
{% endblock %}