acton-htmx 1.0.0-beta.7

Opinionated Rust web framework for HTMX applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="{{ wrapper_class }}{% if has_error %} {{ error_class }}{% endif %}">
{%- if label_position == "before" %}
{{ label_html }}
{%- endif %}
{{ field_html }}
{%- if label_position == "after" %}
{{ label_html }}
{%- endif %}
{%- if errors %}
{{ errors_html }}
{%- endif %}
{%- if help_text %}
<span class="{{ help_class }}">{{ help_text }}</span>
{%- endif %}
</div>