{% extends 'common/base.html' %} {% block breadcrumb %}
  • Projects
  • {% endblock breadcrumb %} {% block content %} {#
    New Project
    #}

    Your project:

    {% for project in user_projects %}

    {{ project.title }}

    {% if project.ARO_approval %} {% elif project.ARO_approval is null %} {% else %} {% endif %}
    Description{{ project.description }}
    Proposed on{{ project.created }}
    StatusAccepted
    StatusPending approval by the ARO
    StatusRejected by the ARO
    Features

    This project has access to these features:

      {% for feature in project.permissions.all %}
    • {{ feature }}
    • {% empty %}
    • This project doesn't have access to any features yet
    • {% endfor %}
    {% if not project.ARO_approval is False %} Edit Project {% else %}

    This project cannot be edited, as it has been rejected by the ARO.

    {% endif %}
    {% if not forloop.last %}
    {% endif %} {% empty %}
    You don't have any proposed projects yet
    {% endfor %} {% endblock %}