{% extends "/base.html" %} {% set active_page = "create" %} {% set active_link = "newproject" %} {% from "_formhelpers.html" import render_field %} {% block content %} {% if staff_or_admin %}

Create a new project


{{ form.hidden_tag() }}
{{ render_field(form.name, placeholder="The name of the project.", show_label=True, class="form-control", required="required", autofocus="autofocus") }} {{ render_field(form.short_name, placeholder="A shortcut for accessing the project via the web.", show_label=True, class="form-control", required="required") }} {{ render_field(form.long_description, class="form-control", rows="13", label_text="Long description", show_label=True, placeholder="Long description (use Markdown)!", required="required") }}
{% else %}

Unauthorized

You are not authorized to access the URL requested.

Go Home
{% endif %} {% endblock %}