{% extends 'main_card.html.twig' %} {% block title %}{% trans %}label_generator.title{% endtrans %}{% endblock %} {%- block card_title -%} {% trans %}label_generator.title{% endtrans %} {% if profile %}({{ profile.name }}){% endif %} {%- endblock -%} {% block card_content %} {{ form_start(form) }}
{{ form_row(form.target_id) }} {{ form_row(form.options.supported_element) }}
{{ form_label(form.options.width) }}
{{ form_widget(form.options.width) }} x {{ form_widget(form.options.height) }} mm
{{ form_row(form.options.barcode_type) }} {{ form_row(form.options.lines) }}
{{ form_row(form.options.additional_css) }} {{ form_widget(form.options) }}
{{ profile.name ?? '-' }} {% if profile and is_granted("edit", profile) %} {% endif %}
{% if is_granted("@labels.read_profiles") %} {% endif %}
{{ form_widget(form.save_profile_name) }} {{ form_widget(form.save_profile) }}
{{ form_errors(form.save_profile_name) }}
{{ form_end(form) }} {% if pdf_data %}
{% trans %}label_generator.download{% endtrans %}
{% endif %} {% endblock %} {% block additional_content %} {% if pdf_data %}
{% endif %} {% endblock %}