{% extends "base.html" %} {% load i18n static tz time_delta_tags timeline_tags wagtailcore_tags ckeditor_tags %} {% block title %}{{view.project.name}}{% endblock %} {% block extra_messages %} {{ block.super }} {% if view.project.is_draft %} {% endif %} {% endblock %} {% block content %} {% include 'euth_projects/includes/project_hero_unit.html' with project=view.project %} {% with view.project.phases as phases %}

{% trans 'Timeline' %}

{% endwith %}

{% trans "info" %}

{{ view.project.information | transform_collapsibles | richtext }} {% if view.project.contact_name or view.project.contact_address_text or view.project.contact_email or view.project.contact_phone or view.project.contact_url %}

{% trans 'Contact for questions' %}

{% if view.project.contact_name %}

{{ view.project.contact_name }}

{% endif %} {% if view.project.contact_address_text %}

{{ view.project.contact_address_text|linebreaks }}

{% endif %} {% if view.project.contact_phone %}

{% trans 'Telephone' %}: {{ view.project.contact_phone }}

{% endif %} {% if view.project.contact_email %} {% trans 'Email' %} {% endif %} {% if view.project.contact_url %} {% trans 'Website' %} {% endif %} {% endif %}
{% url 'offlineevent-detail' pk=object.pk as offlineevent_url %} {% if not request.get_full_path == offlineevent_url %} {% if not view.phase %} {% trans 'Welcome!' as title %} {% trans 'This project has not started yet!' as text %} {% include 'euth_contrib/includes/info_note.html' with image='images/project_info_note.png' title=title text=text %} {% endif %} {% if view.phase and view.phase.is_over %} {% if view.project.future_phases or view.project.active_phase %} {% trans 'Thanks for participating!' as title %} {% trans 'This phase is already over. Thanks a lot to everyone for taking part in the project! The next phase will start soon.' as text %} {% include 'euth_contrib/includes/info_note.html' with image='images/project_info_note.png' title=title text=text %} {% else %} {% trans 'Thanks for participating!' as title %} {% trans 'This project is already over. Thanks a lot to everyone for taking part in the project!' as text %} {% include 'euth_contrib/includes/info_note.html' with image='images/project_info_note.png' title=title text=text %} {% endif %} {% endif %} {% if view.phase %}

{{ view.phase.name }}

{% if view.phase and not view.phase.is_over %}
{% get_time_left view.phase.end_date as time_left %} {% trans 'This phase ends in' %} {{ time_left }}

{{ view.phase.start_date|date:'SHORT_DATETIME_FORMAT' }} - {{ view.phase.end_date|date:'SHORT_DATETIME_FORMAT' }} {% trans '(Your Timezone: ' %} {% get_current_timezone as TIME_ZONE %} {{ TIME_ZONE }})

{% endif %}

{{ view.phase.description }}

{% endif %} {% if view.project.is_private %}

{% trans 'This project is not publicly visible. Only invited users can see content and actively participate.' %}

{% elif view.project.is_semipublic %}

{% trans 'This project is publicly visible. Invited users can actively participate.' %}

{% endif %} {% endif %} {% block phase_content %}{% endblock %}
{% trans 'The initiator hasn’t provided information on the expected outcome of the project yet.' as no_results %} {{ view.project.result | default:no_results | safe | linebreaks | transform_collapsibles | richtext }}
{% if view.project.other_projects %}
{% trans 'other projects from this organisation'%}
{% include "euth_projects/includes/project_carousel.html" with projects=view.project.other_projects %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}