{% extends "a4dashboard/base_dashboard.html" %} {% load i18n %} {% block title %}{% trans "Create project based on" %} {{ view.blueprint.title }} — {{ block.super }}{% endblock %} {% block dashboard_content %}

{% trans "Create project based on" %} {{ view.blueprint.title }}

{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% csrf_token %} {% include 'a4forms/includes/form_field.html' with field=form.name %} {% include 'a4forms/includes/form_field.html' with field=form.description %} {% include 'a4forms/includes/form_field.html' with field=form.image %} {% include 'a4forms/includes/form_field.html' with field=form.image_copyright %}

{% trans "After saving the draft project you can further customize and edit your project and eventually publish it." %}

{% trans 'Cancel' %}
{% endblock %} {% block extra_js %} {{ form.media.js }} {% endblock %} {% block extra_css %} {{ form.media.css }} {% endblock %}