{% extends 'base.html' %} {% load i18n %} {% load render_bundle from webpack_loader %} {% block title %}{{ organization.name }}{% endblock %} {% block content %}
{% include "partials/header_name.html" with object=organization %} {% block exttendmeta %} {% if organization.start %}

{% if organization.end %} {% trans 'Existed from' %} {{ organization.start }} {% trans 'until' %} {{ organization.end }} {% else %} {% trans 'Exists since' %} {{ organization.start }} {% endif %}

{% endif %} {% trans "Legislative Terms:" as name context "List name" %} {% include "partials/inline_list.html" with objects=organization.legislative_terms.all icon="calendar" %} {% endblock %} {% if not organization.body.is_default_body %}

{{ organization.body }}

{% endif %} {% if organization.location %}

{{ organization.location }}

{% endif %}
{% if not members and not papers and not meetings %}

{% trans "Unfortunately, there is only few information about this organization" %}

{% endif %}
{% include "partials/person_grid.html" %}
{% if members|length == 0 %}

{% trans "No members for this organization" %}

{% endif %}
{% trans "Subscribe (iCal)" %}
    {% for meeting in meetings %}
  • {{ meeting.start }} {% if meeting.name != organization.name %}
    {{ meeting.name }} {% endif %}
    {% if meeting.location %} {{ meeting.location.short }} {% else %} {% trans "Unknown" %} {% endif %}
  • {% endfor %}
{% if meeting_count > meetings|length %}

{% trans "Remaining meetings omitted. They can be found with the search" %}

{% endif %}
{% endblock %} {% block additional_js %} {% render_bundle 'persons' 'js' %} {% endblock %}