* adds proper boolean mapping to update_codelist * differs between id and atom_id for KonovaCode since atomIds are not unique (could change in the future) * adds is_selectable and is_archived to KonovaCode * scales width of DAL form fields to 100% width * adds table-responsive wrapping container for table forms to prevent unwanted rendering artifacts in case of table resizing due to long content * adds autocomplete routes for law, registration offices and conservation offices
		
			
				
	
	
		
			25 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
<div class="table-responsive">
 | 
						|
    <table class="table">
 | 
						|
        <tbody>
 | 
						|
        {% for field in form %}
 | 
						|
        <tr title="{{ field.help_text }}" class="{% if field.errors %}alert-danger{% endif %}">
 | 
						|
            <th scope="row" class="col-sm-3">
 | 
						|
                <label for="id_{{ field.name }}">{{ field.label }}<span class="label-required">{% if field.field.required %}*{% endif %}</span></label>
 | 
						|
                <small>{{ field.help_text }}</small>
 | 
						|
            </th>
 | 
						|
            <td class="col-sm-9">
 | 
						|
                {{ field }}
 | 
						|
                {% for error in field.errors %}
 | 
						|
                <br>
 | 
						|
                <strong class="invalid">{{ error }}</strong>
 | 
						|
                {% endfor %}
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
        {% endfor %}
 | 
						|
        </tbody>
 | 
						|
    </table>
 | 
						|
    {% if form.has_required_fields %}
 | 
						|
    <small>{% trans 'Fields with * are required.' %}</small>
 | 
						|
    {% endif %}
 | 
						|
</div> |