Fixed non-binary gender option

This commit is contained in:
Socks 2018-03-26 17:29:08 +01:00
parent bd6d69a83b
commit 1d542150ad

View file

@ -46,7 +46,7 @@
<label class="custom-control-label" for="genderInline2">Female</label>
</div>
<div class="custom-control custom-radio custom-control-inline mt-2">
<input type="radio" id="genderInline3" name="gender" class="custom-control-input" {% if account.profile.gender!="Female" and account.profile.gender!="Male" %}checked{% endif %}>
<input type="radio" id="genderInline3" name="gender" value="Non-Binary" class="custom-control-input" {% if account.profile.gender!="Female" and account.profile.gender!="Male" %}checked{% endif %}>
<label class="custom-control-label" for="genderInline3">Other</label>
</div>
</div>