{% extends "master.html" %} {% block content %}

Create new presentation

{% csrf_token %} {{ form.title.label_tag }} {{ form.title }} {{ form.title.errors }}
{% with existing_tags as actionbar_tags %} {% include 'ui_tag_editor.html' %} {% endwith %}
{% if selected %} {{ form.add_selected.label_tag }} {{ form.add_selected }} {{ form.add_selected.errors }} {% endif %} {% if can_publish %}

{{ form.auth_access }} {{ form.auth_access.errors }} Grant access to {% for group in custom_permissions %} {{ group }}{{ forloop.last|yesno:".,;" }} {% empty %} authenticated users {% endfor %}
{% endif %}

{% if next %} Cancel {% endif %}
{% endblock %}