mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <div class="modal-dialog">
 | |
|     <div class="modal-content">
 | |
|         <div class="modal-header">
 | |
|             <button type="button" class="close" data-dismiss="modal"><span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
 | |
|             </button>
 | |
|             <h4 class="modal-title">{{ trans('firefly.add_money_to_piggy_title', {name: piggyBank.name}) }}</h4>
 | |
|         </div>
 | |
|         {% if maxAmount > 0 %}
 | |
|             <form style="display: inline;" id="add" action="{{ route('piggy-banks.add', piggyBank.id) }}" method="POST">
 | |
|                 <div class="modal-body">
 | |
|                     <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | |
| 
 | |
|                     <p>
 | |
|                         {{ 'max_amount_add'|_ }}: {{ formatAmountByCurrency(currency,maxAmount) }}.
 | |
|                     </p>
 | |
| 
 | |
|                     <div class="input-group">
 | |
|                         <div class="input-group-addon">{{ currency.symbol|raw }}</div>
 | |
|                         <input step="any" class="form-control" id="amount" autocomplete="off" name="amount" max="{{ maxAmount|round(currency.decimal_places) }}" type="number"/>
 | |
|                     </div>
 | |
|                 </div>
 | |
|                 <div class="modal-footer">
 | |
|                     <button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
 | |
|                     <button type="submit" class="btn btn-primary">{{ 'add'|_ }}</button>
 | |
|                 </div>
 | |
|             </form>
 | |
|         {% else %}
 | |
|             <div class="modal-body">
 | |
|                 <p class="text-danger">{{ 'no_money_for_piggy'|_ }}</p>
 | |
|             </div>
 | |
|             <div class="modal-footer">
 | |
|                 <button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
 | |
|             </div>
 | |
|         {% endif %}
 | |
|     </div>
 | |
| </div>
 | |
| 
 |