mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.6 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-sm-12 col-md-12">
 | |
|             <div class="box">
 | |
|                 <div class="box-header with-border">
 | |
|                     <h3 class="box-title">{{ 'currencies'|_ }}</h3>
 | |
|                 </div>
 | |
|                 <div class="box-body">
 | |
|                     <p class="text-info">
 | |
|                         {{ 'currencies_intro'|_ }}
 | |
|                     </p>
 | |
|                     {% if currencies|length > 0 %}
 | |
|                         <table class="table table-hover">
 | |
|                             <thead>
 | |
|                             <tr>
 | |
|                                 <th> </th>
 | |
|                                 <th colspan="2">{{ 'currency'|_ }}</th>
 | |
|                             </tr>
 | |
|                             </thead>
 | |
|                             <tbody>
 | |
|                             {% for currency in currencies %}
 | |
|                                 <tr>
 | |
|                                     <td>
 | |
|                                         <div class="btn-group btn-group-xs">
 | |
|                                             <a class="btn btn-default" href="{{ route('currency.edit',currency.id) }}"><i class="fa fa-fw fa-pencil"></i></a>
 | |
|                                             <a class="btn btn-danger" href="{{ route('currency.delete',currency.id) }}"><i class="fa fa-fw fa-trash"></i></a>
 | |
|                                         </div>
 | |
|                                     </td>
 | |
|                                     <td>{{ currency.name }} ({{ currency.code }}) ({{ currency.symbol|raw }})</td>
 | |
|                                     <td>
 | |
|                                         {% if currency.id == defaultCurrency.id %}
 | |
|                                             <span class="label label-success">{{ 'default_currency'|_ }}</span>
 | |
|                                         {% else %}
 | |
|                                             <a class="btn btn-info btn-xs" href="{{ route('currency.default',currency.id) }}">{{ 'make_default_currency'|_ }}</a>
 | |
|                                         {% endif %}
 | |
|                                     </td>
 | |
|                                 </tr>
 | |
|                             {% endfor %}
 | |
|                             </tbody>
 | |
|                         </table>
 | |
|                     {% endif %}
 | |
|                 </div>
 | |
|                 <div class="box-footer">
 | |
|                     <a class="btn btn-success pull-right" href="{{ route('currency.create') }}">{{ 'create_currency'|_ }}</a>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| {% endblock %}
 |