{% extends "../../base.html" %} {% load i18n %} {% load juntagrico.config %} {% load juntagrico.common %} {% block page_title %} {% vocabulary "depot_pl" as v_depot_pl %}

{% blocktrans %}{{ v_depot_pl }}-Änderungsliste{% endblocktrans %}

{% endblock %} {% block content %} {% include '../../member/snippets/toggle_buttons.html' with co_members=True %} {{ block.super }} {% endblock %} {% block list %} {% vocabulary "depot" as v_depot %} {% for subscription in object_list %} {% endfor %}
{% vocabulary "subscription" %} {% trans "Inhalt" %} {% trans "Kontakt" %} {% blocktrans %}{{ v_depot }} Bisher{% endblocktrans %} {% blocktrans %}{{ v_depot }} Neu{% endblocktrans %} {% trans "Aktionen" %} {% trans "Notizen" %}
{% include '../snippets/display_linked.html' %} {{ subscription.id }} {% for item in subscription.content_strings %}
{{ item }}
{% endfor %}
{% include '../snippets/members_linked.html' %} {{ subscription.depot }} {{ subscription.future_depot }} {% trans "Ändern" %} {{ subscription.notes }}
{% endblock %} {% block datatable_constructor %} {{ block.super }} config.layout.topStart.features.buttons.push( id_action_button( ' {% trans "Ändern" %}', '{% url 'manage-sub-depot-change-confirm' %}', '{% csrf_token %}', '.subscription_id', 'ids', [ {% vocabulary "depot" as v_depot %} {% vocabulary "subscription" as v_subscription %} '{% blocktrans %}{{ v_depot }} von 1 {{ v_subscription }} ändern?{% endblocktrans %}', {% vocabulary "depot_pl" as v_depot_pl %} {% vocabulary "subscription_pl" as v_subscription_pl %} '{% blocktrans %}{{ v_depot_pl }} von {count} {{ v_subscription_pl }} ändern?{% endblocktrans %}' ] ), ) {% endblock %}