* adds functionality for withdraws from eco accounts in detail view of interventions and eco account as well * adds get_surface() method to AbstractCompensation class to provide a simple getter for a sql calculation * adds get_surface_withdraws() method to EcoAccount class to provide a simple getter for a sql calculation * renames some routes to match coherent rout naming * adds logic check on NewWithdrawForm * renames templates/table directory to templates/form, since there are form-table templates inside --> more clarity * adds new autocomplete routes to konova/urls.py for Interventions and EcoAccounts * adds/updates translations * adds/updates template comments * updates requirements.txt
		
			
				
	
	
		
			22 lines
		
	
	
		
			939 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			939 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
        <table class="table">
 | 
						|
            <tbody>
 | 
						|
                {% for field in form %}
 | 
						|
                <tr title="{{ field.help_text }}" class="{% if field.errors %}error{% endif %}">
 | 
						|
                    <th scope="row" class="col-sm-3">
 | 
						|
                        <div>{{ field.label }}<span class="label-required">{% if field.field.required %}*{% endif %}</span></div>
 | 
						|
                        <small>{{ field.help_text }}</small>
 | 
						|
                    </th>
 | 
						|
                    <td class="col-sm-9">
 | 
						|
                        {{ field }}
 | 
						|
                        {% for error in field.errors %}
 | 
						|
                        <strong>{{ error }}</strong>
 | 
						|
                        {% endfor %}
 | 
						|
                    </td>
 | 
						|
                </tr>
 | 
						|
                {% endfor %}
 | 
						|
            </tbody>
 | 
						|
        </table>
 | 
						|
        {% if form.has_required_fields %}
 | 
						|
        <small>{% trans 'Fields with * are required.' %}</small>
 | 
						|
        {% endif %} |