{% extends 'core_main_app/_render/admin/theme/tools/box.html' %} {% block box_title %}Sets{% endblock %} {% block box_tools %}
{% url 'admin:core_oaipmh_provider_app_add_set' as add_url %} {% include 'core_main_app/common/buttons/add.html' with label='Add Set' %}
{% endblock %} {% block box_body %}

Add sets to your server by associating templates to them.

{% for set in data.sets %} {% empty %} {% endfor %}
Set Spec Set Name Associate Templates Description Actions
{{ set.set_spec }} {{ set.set_name }} {% for manager in set.templates_manager %} {{ manager.title }} - {% endfor %} {{ set.description }} {% url 'admin:core_oaipmh_provider_app_edit_set' set.id as edit_url %} {% include 'core_main_app/common/buttons/edit.html' %} {% url 'admin:core_oaipmh_provider_app_delete_set' set.id as delete_url %} {% include 'core_main_app/common/buttons/delete.html' %}
There are currently no Sets. Please add a new one.
{% endblock %}