2015-05-02 18:26:55 +02:00
|
|
|
{% extends "./layout/default.twig" %}
|
2015-06-19 20:59:14 +02:00
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2015-05-02 18:26:55 +02:00
|
|
|
{{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }}
|
2015-06-19 20:59:14 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2015-05-15 20:43:50 +02:00
|
|
|
<div class="row">
|
2015-07-01 15:02:27 +02:00
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
2015-06-20 07:29:25 +02:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
2015-06-21 10:50:45 +02:00
|
|
|
<h3 class="box-title">{{ 'reportsOwnAccounts'|_ }}</h3>
|
2015-05-15 20:43:50 +02:00
|
|
|
</div>
|
2015-06-20 07:29:25 +02:00
|
|
|
<div class="box-body">
|
2015-05-15 20:43:50 +02:00
|
|
|
|
|
|
|
{% for year, entries in months %}
|
2015-06-27 08:06:24 +02:00
|
|
|
<h4><a href="{{ route('reports.year',year) }}">{{ year }}</a></h4>
|
2015-05-15 20:43:50 +02:00
|
|
|
<ul class="list-inline">
|
2015-06-27 08:06:24 +02:00
|
|
|
{% for month in entries %}
|
|
|
|
<li><a href="{{ route('reports.month',[month.year, month.month]) }}">{{ month.formatted }}</a></li>
|
|
|
|
{% endfor %}
|
2015-05-15 20:43:50 +02:00
|
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2015-05-02 18:26:55 +02:00
|
|
|
</div>
|
2015-05-15 20:43:50 +02:00
|
|
|
</div>
|
2015-07-01 15:02:27 +02:00
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
2015-06-20 07:29:25 +02:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
2015-06-21 10:50:45 +02:00
|
|
|
<h3 class="box-title">{{ 'reportsOwnAccountsAndShared'|_ }}</h3>
|
2015-05-15 20:43:50 +02:00
|
|
|
</div>
|
2015-06-20 07:29:25 +02:00
|
|
|
<div class="box-body">
|
2015-05-02 18:26:55 +02:00
|
|
|
|
2015-05-15 20:43:50 +02:00
|
|
|
{% for year, entries in months %}
|
2015-06-27 08:06:24 +02:00
|
|
|
<h4><a href="{{ route('reports.year',[year, 'shared']) }}">{{ year }}</a></h4>
|
2015-05-15 20:43:50 +02:00
|
|
|
<ul class="list-inline">
|
|
|
|
{% for month in entries %}
|
2015-06-27 08:06:24 +02:00
|
|
|
<li><a href="{{ route('reports.month',[month.year, month.month,'shared']) }}">{{ month.formatted }}</a></li>
|
2015-05-15 20:43:50 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2015-05-02 18:26:55 +02:00
|
|
|
{% endfor %}
|
2015-05-15 20:43:50 +02:00
|
|
|
</div>
|
2015-05-02 18:26:55 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
<script type="text/javascript" src="js/reports.js"></script>
|
|
|
|
{% endblock %}
|