actix-admin 0.8.0

An admin interface for actix-web
Documentation
1
2
3
4
5
6
7
8
9
<input 
    class="{{ model_field | get_html_input_class }} {{ additional_classes | default(value='')}} form-control" 
    type="{{ model_field | get_html_input_type }}"
    value="true" 
    name="{{ model_field.field_name }}" 
    placeholder="{{ model_field.field_name }}"
    aria-label="{{ model_field.field_name }}" 
    {% if model.values | get(key=model_field.field_name, default="false") == "true" %}checked{% endif %}
>