| 
									
										
										
										
											2016-11-06 16:17:22 +01:00
										 |  |  | {% extends "./layout/default" %}
 | 
					
						
							| 
									
										
										
										
											2015-06-19 20:59:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block breadcrumbs %}
 | 
					
						
							| 
									
										
										
										
											2017-03-10 16:08:58 +01:00
										 |  |  |     {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName, moment, start, end) }}
 | 
					
						
							| 
									
										
										
										
											2015-06-19 20:59:14 +02:00
										 |  |  | {% endblock %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     {# upper show-all instruction #}
 | 
					
						
							|  |  |  |     {% if periods.count > 0 %}
 | 
					
						
							|  |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-offset-10 col-lg-2 col-md-offset-10 col-md-2 col-sm-12 col-xs-12">
 | 
					
						
							|  |  |  |                 <p class="small text-center"><a href="{{ route('budgets.no-budget',['all']) }}">{{ 'showEverything'|_ }}</a></p>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     <div class="row">
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |         <div class="{% if periods.count > 0 %}col-lg-10 col-md-10 col-sm-12{% else %}col-lg-12 col-md-12 col-sm-12{% endif %}">
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |             <div class="box">
 | 
					
						
							|  |  |  |                 <div class="box-header with-border">
 | 
					
						
							|  |  |  |                     <h3 class="box-title">{{ subTitle }}</h3>
 | 
					
						
							|  |  |  |                 </div>
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |                 <div class="box-body ">
 | 
					
						
							| 
									
										
										
										
											2017-03-10 19:34:46 +01:00
										 |  |  |                     {% include 'list.journals-tasker' with {'journals': journals,'hideBudgets': true} %}
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |                     {% if periods.count > 0 %}
 | 
					
						
							|  |  |  |                         <p>
 | 
					
						
							|  |  |  |                             <i class="fa fa-calendar" aria-hidden="true"></i>
 | 
					
						
							|  |  |  |                             <a href="{{ route('budgets.no-budget', ['all']) }}">{{ 'show_all_no_filter'|_ }}</a>
 | 
					
						
							|  |  |  |                         </p>
 | 
					
						
							|  |  |  |                     {% else %}
 | 
					
						
							|  |  |  |                         <p>
 | 
					
						
							|  |  |  |                             <i class="fa fa-calendar" aria-hidden="true"></i>
 | 
					
						
							|  |  |  |                             <a href="{{ route('budgets.no-budget') }}">{{ 'show_the_current_period_and_overview'|_ }}</a>
 | 
					
						
							|  |  |  |                         </p>
 | 
					
						
							|  |  |  |                     {% endif %}
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |                 </div>
 | 
					
						
							| 
									
										
										
										
											2015-05-02 09:06:07 +02:00
										 |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         {% if periods.count > 0 %}
 | 
					
						
							|  |  |  |             <div class="col-lg-2 col-md-2 col-sm-12 col-xs-12">
 | 
					
						
							|  |  |  |                 {% for entry in periods %}
 | 
					
						
							| 
									
										
										
										
											2017-03-10 18:54:50 +01:00
										 |  |  |                     <div class="box {% if entry.date == start %}box-solid box-primary{% endif %}">
 | 
					
						
							| 
									
										
										
										
											2017-03-10 16:08:58 +01:00
										 |  |  |                         <div class="box-header with-border">
 | 
					
						
							| 
									
										
										
										
											2017-03-10 18:54:50 +01:00
										 |  |  |                             <h3 class="box-title"><a href="{{ route('budgets.no-budget',[entry.string]) }}">{{ entry.name }}</a>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 16:08:58 +01:00
										 |  |  |                             </h3>
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |                         </div>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 16:08:58 +01:00
										 |  |  |                         <div class="box-body no-padding">
 | 
					
						
							|  |  |  |                             <table class="table table-hover">
 | 
					
						
							|  |  |  |                                 <tr>
 | 
					
						
							|  |  |  |                                     <td style="width:33%;">{{ 'transactions'|_ }}</td>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 18:54:50 +01:00
										 |  |  |                                     <td style="text-align: right;">{{ entry.count }}</td>
 | 
					
						
							|  |  |  |                                 </tr>
 | 
					
						
							|  |  |  |                                 <tr>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 19:34:46 +01:00
										 |  |  |                                     <td style="width:33%;">{{ 'spent'|_ }}</td>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 18:54:50 +01:00
										 |  |  |                                     <td style="text-align: right;">{{ entry.sum|formatAmount }}</td>
 | 
					
						
							| 
									
										
										
										
											2017-03-10 16:08:58 +01:00
										 |  |  |                                 </tr>
 | 
					
						
							|  |  |  |                             </table>
 | 
					
						
							|  |  |  |                         </div>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |                 {% endfor %}
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-02 09:06:07 +02:00
										 |  |  |     </div>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 20:54:18 +01:00
										 |  |  |     {# lower show-all instruction #}
 | 
					
						
							|  |  |  |     {% if periods.count > 0 %}
 | 
					
						
							|  |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-offset-10 col-lg-2 col-md-offset-10 col-md-2 col-sm-12 col-xs-12">
 | 
					
						
							|  |  |  |                 <p class="small text-center"><a href="{{ route('budgets.no-budget',['all']) }}">{{ 'showEverything'|_ }}</a></p>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-05 12:51:57 +02:00
										 |  |  | {% endblock %}
 | 
					
						
							| 
									
										
										
										
											2016-04-23 18:55:57 +02:00
										 |  |  | {% block scripts %}
 | 
					
						
							|  |  |  |     <script type="text/javascript" src="js/ff/transactions/list.js"></script>
 | 
					
						
							| 
									
										
										
										
											2016-04-24 09:02:21 +02:00
										 |  |  | {% endblock %}
 |