{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}

Permission Denied

You do not have the permission "{{ obj_perm.permission.name }}" needed to perform this action. The description of this permission is: "{{ obj_perm.permission.description }}".

If you would like to exert the action associated to that permission, fill the form with appropriate information and click the "Request" button.

{% csrf_token %} {% for field in form %} {% if perm_name != obj_perm.permission.name or field.name != "permission_owner" %}

{{ field.errors }}

{{ field.label_tag }}: {{ field }} {% if obj_perm.permission.name == "can_create_project"%} {% if field.name == "name" or field.name == "organization" or field.name == "message" %} {% if field.name == "name" %} Provide a descriptive name for the project. {% endif %} {% if field.name == "organization" %} Make sure you set your affiliation. {% endif %} {% if field.name == "message" %} Provide a short description for the project. {% endif %} {% if field.name == "name" or field.name == "organization" or field.name == "message" %} {% endif %} {% endif %} {% endif %} {% endif %}

{% endfor %}
{% endblock %}