fix(formatting of form)

This commit is contained in:
walkews 2017-07-12 11:13:00 -05:00
parent e1ae0fdc15
commit b5812d733f
2 changed files with 18 additions and 11 deletions

View file

@ -4,7 +4,10 @@
<div class="row" min-height:150px>
{% for input in inputs %}
<div class='col-sm-3'>
{{ input }}: <input type='text' class='text_input' id={{ input }} name='{{ input }}'>
{{ input }}:
<div class='right'>
<input type='text' class='text_input' id={{ input }} name='{{ input }}'>
</div>
</div>
{% endfor %}
</div>
@ -12,11 +15,13 @@
{% for dropdown in dropdowns %}
<div class="col-sm-3">
{{ dropdown }}:
<div class='right'>
<select id={{ dropdown }} class="chosen" multiple="true">
{% for item in dropdowns[dropdown] %}
<option>{{ item }}</option>
{% endfor %}
</select>
</div>
</div>
{% endfor %}
</div>