No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

editable_component.html 551B

123456789101112
  1. {% macro input(fieldname, field, value='') -%}
  2. <label for="field_input_{{fieldname}}">{{fieldname}}</label>
  3. {% if field.base_type == 'bool' %}
  4. <input id="field_input_{{fieldname}}" name="field_input_{{fieldname}}" type="checkbox" checked="{% if value %}checked{% endif %}" />
  5. {% elif field.base_type == 'char' or field.base_type == 'int' %}
  6. <input id="{{fieldname}}" name="field_input_{{fieldname}}" type="text" value="{{value}}" />
  7. {% else %}
  8. Unsupported base type "{{field.base_type}}" </br>
  9. {% endif %}
  10. {%- endmacro %}