app/template/user_data/store_info.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% block javascript %}
  3. <script>
  4. </script>
  5. {% endblock %}
  6. {% block stylesheet %}
  7. <style>
  8.    .fcolbox .subtxt1 p:nth-child(odd){
  9.       max-width: 10em;
  10.    }
  11. </style>
  12. {% endblock %}
  13. {% block main %}
  14. <div class="comuni"><h1 class="title_bar nikke">店舗情報</h1>
  15. <!--内容ここから-->
  16.    <div class="fcolbox shopinfo">
  17.       {% for Store in Stores %}
  18.          {% if Store.visible %}
  19.          <div class="col2">
  20.             <h5>{{Store.store_name}}</h5>
  21.             <div class="subtxt1">
  22.                <p>所在地</p>
  23.                <p>〒{{Store.zip01}}-{{Store.zip02}}<br>
  24.                   {% if Store.Pref is not null %}{{Store.Pref.name}}{% endif %}
  25.                   {% if Store.addr01 is not null %}{{Store.addr01}}{% endif %}
  26.                   {% if Store.addr02 is not null %}{{Store.addr02}}{% endif %}
  27.                </p>
  28.                {% if Store.phone_number is not null %}
  29.                <p>電話番号</p>
  30.                <p>{{Store.phone_number}}</p>
  31.                {% endif %}
  32.                {% if Store.staff_name is not null %}
  33.                <p>担当者名</p>
  34.                <p>{{Store.staff_name}}</p>
  35.                {% endif %}
  36.                <p>営業時間</p>
  37.                <p>
  38.                   {% if Store.business_start_time is not null %}{{Store.business_start_time|date('H:i')}}{% endif %}〜
  39.                   {% if Store.business_end_time is not null %}{{Store.business_end_time|date('H:i')}}{% endif %}
  40.                </p>
  41.                {% if Store.email01 is not null %}
  42.                   <p>メールアドレス1</p>
  43.                   <p>
  44.                      {{Store.email01}}
  45.                   </p>
  46.                {% endif %}
  47.                {% if Store.email02 is not null %}
  48.                   <p>メールアドレス2</p>
  49.                   <p>
  50.                      {{Store.email02}}
  51.                   </p>
  52.                {% endif %}
  53.                {% if Store.fax_number is not null %}
  54.                   <p>FAX番号</p>
  55.                   <p>
  56.                      {{Store.fax_number}}
  57.                   </p>
  58.                {% endif %}
  59.                {% if Address[Store.store_id] is not null and Address[Store.store_id] is not empty %}
  60.                <iframe class="gmap_frame" id="gmap_frame1" src="https://maps.google.com/maps?q={{ Address[Store.store_id] }}&amp;ie=UTF8&amp;iwloc=&amp;output=embed" width="100%" height="100%" frameborder="0" style="border:0" allowfullscreen=""></iframe>
  61.                {% endif %}
  62.             </div>
  63.          </div>
  64.          {% endif %}
  65.       {% endfor %}
  66.    </div>
  67. <!--内容ここまで-->
  68. </div>
  69. {% endblock %}