{% extends 'backoffice/base.html' %} {% load bootstrap4 %} {% load i18n %} {% load widget_tweaks %} {% block title %} {{ room.name }} | {{ assembly.name }} | {{ conference.name }} {% endblock %} {% block htmlhead %} {% endblock %} {% block content %} {% include "backoffice/assembly_edit_header.html" %}
{% csrf_token %}
{% if room.id %}ID: {{ room.id }}{% endif %} {% if room.name %}{% if room.room_type != 'project' %}{{ room.get_room_type_display }} {% trans 'Room' %}{% else %}{% trans 'Project' %}{% endif %} "{{ room.name }}"{% else %}{% trans 'Room-new' %}{% endif %}
{% if legal_warning %}
{{ legal_warning }}
{% endif %} {% bootstrap_form form %}
{% if can_manage %} {% endif %}
{% if supports_links %}
{% trans 'Room__links' %}

{% trans 'RoomLink__introduction' %}

{% for link in room.links.all %} {% empty %} {% endfor %}
{{ link.get_link_type_display }}: "{{ link.name }}" {% if can_manage %}
{% csrf_token %}
{% endif %}
{% trans 'Room__links__none' %}
{% if can_manage %} {% endif %}
{% endif %} {% if can_manage %}
{% if room.room_type != 'project' %}{% trans 'Room__remove' %}{% else %}{% trans 'Project__remove' %}{% endif %}
{% if can_delete %}

{% if room.room_type != 'project' %}{% trans 'Room__remove__introduction' %}{% else %}{% trans 'Project__remove__introduction' %}{% endif %}

{% csrf_token %}
{% else %}

{% if room.room_type == 'project' %}{% trans 'Project__remove__notpossible' %}{% elif room.room_type == 'hangar' %}{% trans 'Hangar__remove__notpossible' %}{% else %}{% trans 'Room__remove__notpossible' %}{% endif %}

{% endif %}
{% endif %} {% endblock %}