mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
15 lines
411 B
Twig
15 lines
411 B
Twig
![]() |
{% set VUE_SCRIPT_NAME = 'webhooks/show' %}
|
||
|
{% extends './layout/default' %}
|
||
|
{% block breadcrumbs %}
|
||
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, webhook) }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div id="webhooks_show"></div>
|
||
|
{% endblock %}
|
||
|
{% block scripts %}
|
||
|
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||
|
var previousUrl = '{{ previousUrl }}';
|
||
|
</script>
|
||
|
{% endblock %}
|