mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
54 lines
1.9 KiB
Twig
54 lines
1.9 KiB
Twig
{% extends "./layout/default.twig" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'reportsOwnAccounts'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
|
|
{% for year, entries in months %}
|
|
<h4><a href="{{route('reports.year',year)}}">{{ year }}</a></h4>
|
|
<ul class="list-inline">
|
|
{% for month in entries %}
|
|
<li><a href="{{route('reports.month',[month.year, month.month])}}">{{ month.formatted}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">{{ 'reportsOwnAccountsAndShared'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
|
|
{% for year, entries in months %}
|
|
<h4><a href="{{route('reports.year',[year, 'shared'])}}">{{ year }}</a></h4>
|
|
<ul class="list-inline">
|
|
{% for month in entries %}
|
|
<li><a href="{{route('reports.month',[month.year, month.month,'shared'])}}">{{ month.formatted}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script type="text/javascript" src="js/reports.js"></script>
|
|
{% endblock %}
|