{% load juntagrico.common %} {% load i18n %}

{% trans "Produkte" %}

{% trans "Produkte können in verschiedenen Grössen definiert werden." %} {% trans "Diese erscheinen, wenn aktiviert, auf den Depotlisten." %}

{% for product in products %}
{{ product }} {% if perms.juntagrico.change_subscriptionproduct %} {% endif %}
{% if product.description|striptags|wordcount %}
{{ product.description|richtext|safe }}
{% endif %}
  • {% trans "Grössen" %}
      {% for size in product.sizes.all %}
    • {{ size.name }} ({{ size.units|decimal }}) {% if size.show_on_depot_list %} {% else %} {% endif %}
    • {% endfor %}
{% endfor %} {% if perms.juntagrico.add_subscriptionproduct %}
{% trans "Produkt hinzufügen" %}
{% endif %}