mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 11:45:14 +00:00
15 lines
406 B
Twig
15 lines
406 B
Twig
{% set VUE_SCRIPT_NAME = 'webhooks/create' %}
|
|
{% extends './layout/default' %}
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="webhooks_create"></div>
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
|
var previousUrl = '{{ previousUrl }}';
|
|
</script>
|
|
{% endblock %}
|