Spaces:
No application file
No application file
File size: 1,766 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
{% extends '@MauticCore/Default/content.html.twig' %}
{% block headerTitle %}{{ entity.getId() ?
'mautic.webhook.webhook.header.edit'|trans({'%name%': entity.getName()|trans}) :
'mautic.webhook.webhook.header.new'|trans }}{% endblock %}
{% block mauticContent %}mauticWebhook{% endblock %}
{% block content %}
{{ form_start(form) }}
<!-- start: box layout -->
<div class="box-layout">
<!-- container -->
<div class="col-md-9 height-auto">
<div class="pa-md">
<div class="row">
<div class="col-md-6">
{{ form_row(form.name) }}
{{ form_row(form.description) }}
{{ form_row(form.secret) }}
{{ form_row(form.webhookUrl) }}
<div class="row">
<div class="col-md-5">
{{ form_row(form.sendTest) }}
</div>
<div class="col-md-2">
<span id="spinner" class="fa fa-spinner fa-spin hide"></span>
</div>
<div class="col-md-5">
<div id="tester" class="text-right"></div>
</div>
</div>
</div>
<div class="col-md-6" id="event-types">
{{ form_row(form.events) }}
</div>
</div>
</div>
</div>
<div class="col-md-3 height-auto bdr-l">
<div class="pr-lg pl-lg pt-md pb-md">
{{ form_row(form.category) }}
{{ form_row(form.eventsOrderbyDir) }}
{{ form_row(form.isPublished) }}
</div>
</div>
</div>
{{ form_end(form) }}
{% endblock %}
|