mirror of
				https://github.com/yweber/lodel2.git
				synced 2025-10-31 03:29:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% macro input(fieldname, field, value='') -%}
 | |
| 	<label for="field_input_{{fieldname}}">{{fieldname}}</label>
 | |
| 	{% if field.base_type == 'bool' %}
 | |
| 		<input id="field_input_{{fieldname}}" type="checkbox" checked="{% if value %}checked{% endif %}" />
 | |
| 	{% elif field.base_type == 'char' or field.base_type == 'int' %}
 | |
| 		<input id="field_input_{{fieldname}}" type="text" value="{{value}}" />
 | |
| 	{% else %}
 | |
| 		<p>Unsupported base type "{{field.base_type}}" </p>
 | |
| 	{% endif %}
 | |
| {%- endmacro %}
 | 
