{% if voucher.is_active %}
{% trans "Active" %}
{% else %}
{% trans "Inactive" %}
{% endif %}
{% if voucher.limit_usage_by_group %}
{% for group in voucher.groups.all %}
{{ group.name }}
{% endfor %}
{% else %}
{% trans "No" %}
{% endif %}
{% if voucher.offers.first %}
{% include "oscar/dashboard/vouchers/voucher_thumbnail.html" with record=voucher.offers.first.desktop_image %}
{% endif %}
{% if voucher.offers.first %}
{% include "oscar/dashboard/vouchers/voucher_thumbnail.html" with record=voucher.offers.first.mobile_image %}
{% endif %}