I have this form, that I want that at the moment of being filled out I see only two options to read, something like a switch, yes or no; using bootstrap.
<form>
<div class="editor-label">
@Html.LabelFor(model => model.lucesuno)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.lucesuno)
@Html.ValidationMessageFor(model => model.lucesuno)
</div>
<p>
<input type="submit" value="crear" />
</p>
</form>