mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
15 lines
423 B
Twig
15 lines
423 B
Twig
{% set VUE_SCRIPT_NAME = 'webhooks/edit' %}
|
|
{% extends './layout/default' %}
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, webhook) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="webhooks_edit"></div>
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
|
var previousUrl = '{{ route('webhooks.index') }}';
|
|
</script>
|
|
{% endblock %}
|