{% extends "components/layout.html" %} {% block content %}

Add/Edit project proposal

{% set target_endpoint = url_for("staff.edit_project", project_id=project.id) if project else url_for("staff.create_project") %}
{{ form.csrf_token }}
{{ form.title.label }} {{ form.title(placeholder="Project title", class="w3-input w3-border") }}
{{ form.description.label }} {{ form.description(placeholder="Please add here a 200-word description of your project, followed by a list of required skills and, if applicable, by information about external partners (e.g. industry, etc.).", rows="10", class="w3-input w3-border") }}
{{ form.is_student_proposal(class="w3-check", id="is-student-proposal") }} {{ form.is_student_proposal.label }}
{{ form.on_behalf(placeholder="Student username", class="w3-input w3-border", id="student-proposer") }}
{{ person.full_name }}
{% endblock %} {% block scripts %} {% endblock %}