You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.5 KiB
29 lines
1.5 KiB
<div class="row dd_input_group no-gutters {$form[type].extra_class|default=''}" id="form_group_{$form[type].name}">
|
|
<label class="col-3 col-sm-2 col-md-2 col-lg-2 col-xl-1 dd_input_l col-form-label {notempty name="form[type].required"}is-required{/notempty}" for="{$form[type].name}">{$form[type].title|htmlspecialchars}</label>
|
|
<div class="col-9 col-sm-9 col-md-9 col-lg-6 col-xl-4">
|
|
{notempty name="form[type].group"}
|
|
<div class="input-group">
|
|
{/notempty}
|
|
{notempty name="form[type].group.0"}
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">{$form[type].group.0|raw}</span>
|
|
</div>
|
|
{/notempty}
|
|
<input class="form-control" type="text" id="{$form[type].name}" name="{$form[type].name}" value="{$form[type].value}" placeholder="{$form[type].placeholder}" {$form[type].extra_attr|raw}>
|
|
{notempty name="form[type].group.1"}
|
|
<div class="input-group-append">
|
|
<span class="input-group-text">{$form[type].group.1|raw}</span>
|
|
</div>
|
|
{/notempty}
|
|
{notempty name="form[type].group"}
|
|
</div>
|
|
{/notempty}
|
|
</div>
|
|
{notempty name="form[type].tips"}
|
|
<div class="col-12 offset-sm-2 offset-md-2 offset-lg-0 offset-xl-0 col-sm-10 col-md-10 col-lg-4 col-xl-7 dd_ts">
|
|
<small class="text-muted">
|
|
<i class="fa fa-info-circle"></i> {$form[type].tips|raw}
|
|
</small>
|
|
</div>
|
|
{/notempty}
|
|
</div>
|