summaryrefslogtreecommitdiffstats
path: root/templates/w3/inputs.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/w3/inputs.html')
-rw-r--r--templates/w3/inputs.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/w3/inputs.html b/templates/w3/inputs.html
new file mode 100644
index 0000000..250031c
--- /dev/null
+++ b/templates/w3/inputs.html
@@ -0,0 +1,13 @@
+{% if inputs %}
+ <div class="w3-input">
+ {% if label_class %}
+ <div class="aab {{ label_class }}"></div>
+ {% endif %}
+
+ <div class="{{ field_class }}">
+ {% for input in inputs %}
+ {% include "w3/layout/baseinput.html" %}
+ {% endfor %}
+ </div>
+ </div>
+{% endif %}