Created
February 1, 2013 15:21
-
-
Save bartschuller/4691922 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@(elements: helper.FieldElements) | |
@************************************************** | |
* Generate input according twitter bootstrap rules * | |
**************************************************@ | |
<div class="control-group @if(elements.hasErrors) {error}"> | |
<label class="control-label" for="@elements.id">@elements.label</label> | |
<div class="controls"> | |
@elements.input | |
<span class="help-inline">@elements.errors(elements.lang).mkString(", ")</span> | |
<span class="help-inline">@elements.infos.mkString(", ")</span> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment