{% extends "forms.html" %} {% load forms %} {% block title %}Edit Project{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %} {% load forms %} {% if form.errors or form.non_field_errors %}

Please correct the error{{ form.errors|pluralize }} below.

{% endif %}
{% if is_admin %} {% formfield form.pid %} {% endif %} {% formfield form.name %} {% if is_admin %} {% formfield form.rcao %} {% formfield form.institute %} {% formfield form.leaders %} {% endif %} {% formfield form.description %} {% formfield form.additional_req %} {% if is_admin %} {% formfield form.start_date %} {% formfield form.end_date %} {% formfield form.machine_categories %} {% endif %}
{% endblock %}