mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
14 lines
256 B
Handlebars
14 lines
256 B
Handlebars
<div class='form-element label-area'>
|
|
{{#if label}}
|
|
<label>{{i18n label}}</label>
|
|
{{else}}
|
|
|
|
{{/if}}
|
|
</div>
|
|
<div class='form-element input-area'>
|
|
{{#if wrapLabel}}
|
|
<label>{{yield}}</label>
|
|
{{else}}
|
|
{{yield}}
|
|
{{/if}}
|
|
</div>
|