mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 20:25:28 +00:00
36 lines
1.1 KiB
Twig
36 lines
1.1 KiB
Twig
{% extends "./v2/layout/default" %}
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.render }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<!-- Small boxes (Stat box) -->
|
|
<div class="alert alert-info">
|
|
Hi there! The "v2"-layout is no longer receiving updates. Work will continue in "v3". This will be a fully functional
|
|
<a href="https://en.wikipedia.org/wiki/Single-page_application" class="alert-link">SPA</a>
|
|
based on the excellent <a href="https://quasar.dev/" class="alert-link">Quasar Framework</a> platform.
|
|
Your comments, ideas and feedback will not be lost.
|
|
</div>
|
|
<!-- Main row -->
|
|
<div id="dashboard"></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">
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="v2/js/dashboard.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
{% endblock %}
|