{% extends "helfertool/admin.html" %} {% load i18n bootstrap4 icons %} {% block admincontent %}

{% trans "Manage gifts" %}

{% trans "Gifts" %}

{% if not event.archived %} {% endif %} {% for gift in gifts %} {% if not event.archived %} {% endif %} {% endfor %}
{% trans "Name" %}
{{ gift.name }} {% icon "pencil-alt" %} {% trans "Edit" %}
{% icon "trash-alt" %} {% trans "Delete" %}
{% if not event.archived %}

{% icon "plus" %} {% trans "Add gift" %}

{% endif %}

{% trans "Gift sets" %}

{% if not event.archived %} {% endif %} {% for gift_set in gift_sets %} {% if not event.archived %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Gifts" %}
{{ gift_set.name }}
    {% for gift in gift_set.includedgift_set.all %}
  • {{ gift.count }} {{ gift.gift.name }}
  • {% endfor %}
{% icon "pencil-alt" %} {% trans "Edit" %}
{% icon "trash-alt" %} {% trans "Delete" %}
{% if not event.archived %}

{% icon "plus" %} {% trans "Add gift set" %}

{% endif %} {% endblock %}