display customer edit form

This commit is contained in:
Manuel Raynaud
2013-10-04 12:22:22 +02:00
parent 4ec9c54fbe
commit e2ccf3714b
3 changed files with 12 additions and 11 deletions

View File

@@ -27,7 +27,7 @@
<select name="{$name}" id="{$label_attr.for}" class="form-control">
{loop type="title" name="title1"}
<option value="{$ID}">{$LONG}</option>
<option value="{$ID}" {if $value == $ID}selected{/if}>{$LONG}</option>
{/loop}
</select>
</div>
@@ -85,7 +85,7 @@
<label for="{$label_attr.for}" class="control-label">{intl l={$label}} : </label>
<select name="{$name}" id="{$label_attr.for}" class="form-control">
{loop type="country" name="country1"}
<option value="{$ID}">{$TITLE}</option>
<option value="{$ID}" {if $value == $ID}selected{/if}>{$TITLE}</option>
{/loop}
</select>
</div>