{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Project Properties" %}

{% if new %}

{% trans "Successfully created a project with the following HZDR-ID:" %} {{ project.hzdr_id }}

{% endif %}
{% csrf_token %} {% if project.handle %} {% endif %} {% if project.gate_project %} {% endif %}
HZDR-ID {{ project.hzdr_id }}
Handle {{ project.handle }}
uuid {{ project.uuid }}
GATE-ID {{ project.gate_project.gate_id }}
{% trans "Proposal Number" %} {{ project.gate_project.proposal }}
{% trans "serialization url" %} {{ request.scheme }}://{{ request.get_host }}{% url "heliport:project_serialize" project.pk %}
{% trans "Owner" %} {{ project.owner }}
{% trans "Created" %} {{ project.created }}
{% trans "Group" %}
{% trans "Title" %}
{% trans "Description" %}
{% if update == True %} {% if isOwner %} {% endif %} {% else %} {% if isOwner %} {% endif %} {% endif %}
{% trans 'Cancel' %} {% trans 'Edit' %}

{% trans "Members" %}

{% if project.co_owner.all %}
{% csrf_token %} {% for user in project.co_owner.all %} {% endfor %}
{% trans "Name" %}
{{ user }} {% if isOwner %} {% if update == True %} {% else %} {% endif %} {% endif %}
{% else %}

{% trans "There are no members for this project at the moment!" %}

{% endif %}
{% if isOwner %}
{% csrf_token %}
{% if update == True %} {% else %} {% endif %} {% if update == True %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block script %} {% endblock %}