mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
30 lines
707 B
Twig
30 lines
707 B
Twig
{% extends './v2/layout/default' %}
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<!-- Main row -->
|
|
<div id="transactions_index"></div>
|
|
<!-- /.row (main row) -->
|
|
{% endblock %}
|
|
|
|
{% block control %}
|
|
<div>
|
|
<div class="p-3 control-sidebar-content">
|
|
<h5>{{ 'date_range'|_ }}</h5>
|
|
<hr class="mb-2">
|
|
<div id="calendar"></div>
|
|
<hr class="mb-2">
|
|
<h5>{{ 'list_options'|_ }}</h5>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="v2/js/transactions/index.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
{% endblock %}
|