{% extends "admin/core/base.html" %} {% load static %} {% load foundation %} {% block title %}Licences{% endblock %} {% block title-section %}Licences{% endblock %} {% block title-sub %}Control journal licences{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Licences
  • {% if license %}
  • {{ license.name }}
  • {% endif %} {% endblock %} {% block body %}

    Current Licences

      {% csrf_token %} {% for license in licenses %}
    •   {{ license.name }}
      {% if request.user.is_staff %} {% endif %}
    • {% endfor %}
    {% if license %}

    Edit {{ license.name }}

    {% else %}

    Add New License

    {% endif %}
    {% include "elements/forms/errors.html" with form=form %}
    {% csrf_token %} {{ form|foundation }}
    {% endblock %} {% block js %} {% endblock js %}