Merge pull request #592 from griotteau/patch-admin

Default country set in customer creation
This commit is contained in:
Manuel Raynaud
2014-08-13 17:23:08 +02:00

View File

@@ -297,7 +297,7 @@
<label for="{$label_attr.for}" class="control-label">{$label} : </label> <label for="{$label_attr.for}" class="control-label">{$label} : </label>
<select name="{$name}" id="{$label_attr.for}" class="form-control"> <select name="{$name}" id="{$label_attr.for}" class="form-control">
{loop type="country" name="country1"} {loop type="country" name="country1"}
<option value="{$ID}">{$TITLE}</option> <option value="{$ID}" {if $IS_DEFAULT}selected{/if}>{$TITLE}</option>
{/loop} {/loop}
</select> </select>
</div> </div>