conf-warn.twig
5 years ago
media.twig
1 year ago
multi_currencies.twig
5 years ago
plugins-status.twig
1 year ago
products.twig
1 year ago
status.twig
5 years ago
store-pages.twig
5 years ago
taxonomies.twig
5 years ago
multi_currencies.twig
31 lines
| 1 | <div class="wcml-section"> |
| 2 | <div class="wcml-section-header"> |
| 3 | <h3> |
| 4 | {{ strings.mc_missing }} |
| 5 | </h3> |
| 6 | </div> |
| 7 | <div class="wcml-section-content"> |
| 8 | <ul class="wcml-status-list"> |
| 9 | <li> |
| 10 | {% if not mc_enabled %} |
| 11 | <i>{{ strings.not_enabled }}</i> |
| 12 | {% else %} |
| 13 | {% if sec_currencies is empty %} |
| 14 | <i class="otgs-ico-warning"></i> |
| 15 | {{ strings.no_secondary }} |
| 16 | |
| 17 | <p> |
| 18 | <a class="button-secondary aligncenter" href="{{ add_cur_link }}"> |
| 19 | {{ strings.add_cur }} |
| 20 | </a> |
| 21 | </p> |
| 22 | |
| 23 | {% else %} |
| 24 | <i class="otgs-ico-ok"></i> |
| 25 | {{ strings.sec_currencies|format( sec_currencies ) }} |
| 26 | {% endif %} |
| 27 | {% endif %} |
| 28 | </li> |
| 29 | </ul> |
| 30 | </div> |
| 31 | </div> |