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
| <select id="pref" name="delivery_pref" class="form_type_text02 selectbox delivery_pref"> | |
| <option value="選択してください" {% if Customer.pref is empty %}selected{% endif %}>選択してください</option> | |
| <option value="北海道" {% if Customer.pref == '北海道' %}selected{% endif %}>北海道</option> | |
| <option value="青森県" {% if Customer.pref == '青森県' %}selected{% endif %}>青森県</option> | |
| <option value="岩手県" {% if Customer.pref == '岩手県' %}selected{% endif %}>岩手県</option> | |
| <option value="宮城県" {% if Customer.pref == '宮城県' %}selected{% endif %}>宮城県</option> | |
| <option value="秋田県" {% if Customer.pref == '秋田県' %}selected{% endif %}>秋田県</option> | |
| <option value="山形県" {% if Customer.pref == '山形県' %}selected{% endif %}>山形県</option> | |
| <option value="福島県" {% if Customer.pref == '福島県' %}selected{% endif %}>福島県</option> |
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
| サンプルテキストだよ。 |