{% extends "master.html" %} {% load humanize %} {% load access_control %} {% load ui %} {% load static %} {% block javascript %} {{ block.super }} {% endblock %} {% block sidebar %} {% var as related_pages %} {"pages": [ {"url": "{% url "ui-management" %}", "title": "Management"}, {"url": "{% url "shared-manage" %}", "title": "Shared Collection Management"} ]} {% endvar %} {{ block.super }} {% if collection.id %}
Permissions
{% permissions_display collection %}
Effective Permissions
{% effective_permissions_form collection %}
Remove Shared Collection
{% csrf_token %}
{% endif %} {% endblock %} {% block content %}

Edit Shared Collection

{{ collection.title }}

{% csrf_token %} {{ form.title.label_tag }}{{ form.title }}{{ form.title.errors }} {{ form.url.label_tag }}{{ form.url }}{{ form.url.errors }} {{ form.username.label_tag }}{{ form.username }}{{ form.username.errors }} {{ form.password.label_tag }}{{ form.password }}{{ form.password.errors }} {{ form.description.label_tag }}{{ form.description }}{{ form.description.errors }}

Cancel
{% endblock %}