{% form_theme form with formThemes %} {% extends '@MauticCore/Default/content.html.twig' %} {% block mauticContent 'point' %} {%- block headerTitle -%} {%- if entity.id -%} {{- 'mautic.point.menu.edit'|trans({'%name%': entity.name|trans}) -}} {%- else -%} {{- 'mautic.point.menu.new'|trans -}} {%- endif -%} {%- endblock -%} {% block content %} {{ form_start(form) }}
{{ form_row(form.name) }} {{ form_row(form.description) }}
{{ form_row(form.delta) }} {{ form_row(form.type) }}
{% if form.properties is defined %} {{ form_row(form.properties) }} {% endif %}
{{ form_row(form.group) }}
{{ form_row(form.category) }} {{ form_row(form.isPublished) }} {{ form_row(form.repeatable) }} {{ form_row(form.publishUp) }} {{ form_row(form.publishDown) }}
{{ form_end(form) }} {% endblock %}