attributes.twig
3 years ago
footer.twig
3 years ago
header.twig
10 months ago
introduction.twig
3 years ago
multi-currency.twig
10 months ago
notice.twig
3 years ago
store-pages.twig
3 years ago
wizard-notice.twig
3 years ago
attributes.twig
28 lines
| 1 | <span id="{{ strings.step_id }}"> |
| 2 | <h1>{{ strings.heading|raw }}</h1> |
| 3 | |
| 4 | <p>{{ strings.description_1|raw }}</p> |
| 5 | <p>{{ strings.description_2 }}</p> |
| 6 | |
| 7 | {% if attributes %} |
| 8 | <ul class="no-bullets" > |
| 9 | {% for attribute in attributes %} |
| 10 | <li> |
| 11 | <label> |
| 12 | <input type="hidden" name="attributes[{{ attribute.name }}]" value="0" /> |
| 13 | <input type="checkbox" name="attributes[{{ attribute.name }}]" value="1" {% if attribute.translated %}checked="checked"{% endif %} /> |
| 14 | {{ attribute.label }} |
| 15 | </label> |
| 16 | </li> |
| 17 | {% endfor %} |
| 18 | </ul> |
| 19 | {% else %} |
| 20 | <p><i>{{ strings.no_attributes }}</i></p> |
| 21 | {% endif %} |
| 22 | |
| 23 | <p class="wcml-setup-actions step"> |
| 24 | <a href="{{ go_back_url }}" class="go-back">{{ strings.go_back }}</a> |
| 25 | <a href="{{ continue_url }}" class="button button-large button-primary submit">{{ strings.continue }}</a> |
| 26 | </p> |
| 27 | </span> |
| 28 |