mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-30 23:39:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			827 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			827 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% comment %}
 | |
| SPDX-License-Identifier: GPL-3.0-or-later
 | |
| {% endcomment %}
 | |
| 
 | |
| {# Select amount to transfert in € #}
 | |
| <div class="input-group">
 | |
|     <input class="form-control mx-auto d-block" type="number" {% if not widget.attrs.negative %}min="0"{% endif %} step="0.01"
 | |
|            {% if widget.value != None and widget.value != "" %}value="{{ widget.value }}"{% endif %}
 | |
|            name="{{ widget.name }}"
 | |
|            {# Other attributes are loaded  #}
 | |
|            {% for name, value in widget.attrs.items %}
 | |
|                 {% if value is not False %}{{ name }}{% if value is not True %}="{{ value|stringformat:'s' }}"{% endif %}{% endif %}
 | |
|             {% endfor %}>
 | |
|     <div class="input-group-append">
 | |
|         <span class="input-group-text">€</span>
 | |
|     </div>
 | |
|     <p id="amount-required" class="invalid-feedback"></p>
 | |
| </div>
 |