app/Plugin/TasteManager/Resource/template/default/taste.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {#
  9. <script>
  10.     $(function () {
  11.         $('#taste_area').insertBefore($('div.ec-productRole__category'));
  12.     });
  13. </script>
  14. {% if Product.Taste is not empty %}
  15.     <div id="taste_area" class="ec-productRole__taste" style="padding: 14px 0; border-bottom: 1px dotted #ccc;">
  16.         {% if Product.taste_url is not empty %}
  17.             <p class="ec-taste">{{ 'taste.admin.taste'|trans }}: <a href="{{ Product.taste_url }}" target="_blank">{{ Product.Taste.name }}</a></p>
  18.         {% else %}
  19.             <p class="ec-taste">{{ 'taste.admin.taste'|trans }}: {{ Product.Taste.name }}</p>
  20.         {% endif %}
  21.     </div>
  22. {% endif %}
  23. #}