Make required fields required :P
This commit is contained in:
parent
8250842f77
commit
009fd7e80e
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
|||
</div>
|
||||
<div class="form-group">
|
||||
<label for="organization">Organization</label>
|
||||
<select class="custom-select mr-sm-2" id="organization" name="organization">
|
||||
<select required class="custom-select mr-sm-2" id="organization" name="organization">
|
||||
{% for choice in organizations %}
|
||||
<option value="{{ choice.id }}">{{ choice.name }}</option>
|
||||
{% endfor %}
|
||||
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
<div class="form-group">
|
||||
<label for="model">Model</label>
|
||||
<select class="custom-select mr-sm-2" id="model" name="model">
|
||||
<select required class="custom-select mr-sm-2" id="model" name="model">
|
||||
{% for choice in models %}
|
||||
<option value="{{ choice.id }}">{{ choice.name }}</option>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue