app/template/user_data/abouts.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. {% extends 'default_frame.twig' %}
  9. {% block main %}
  10. <div class="ec-role">
  11.     <div class="ec-pageHeader">
  12.         <h1>{{ '会社概要'|trans }}</h1>
  13.     </div>
  14.     {% if BaseInfo.message|default is not empty %}
  15.     ごあいさつ<br />
  16.     <dd>{{ BaseInfo.message|nl2br }}</dd>
  17.     </div>
  18.     {% endif %}
  19.     <div class="ec-off1Grid">
  20.         <div class="ec-off1Grid__cell">
  21.             <div class="ec-borderedDefs">
  22.                 {% if BaseInfo.shop_name|default is not empty %}
  23.                     <dl id="help_about_box__shop_name">
  24.                         <dt>
  25.                             <label class="ec-label">{{ '商号'|trans }}</label>
  26.                         </dt>
  27.                         <dd>{{ BaseInfo.shop_name }}</dd>
  28.                     </dl>
  29.                 {% endif %}
  30.                 {% if BaseInfo.seturitu|default is not empty %}
  31.                     <dl id="help_about_box__seturitu">
  32.                         <dt>
  33.                             <label class="ec-label">{{ '設立年月日'|trans }}</label>
  34.                         </dt>
  35.                         <dd>{{ BaseInfo.seturitu }}</dd>
  36.                     </dl>
  37.                 {% endif %}
  38.                 {% if BaseInfo.company_name|default is not empty %}
  39.                     <dl id="help_about_box__company_name">
  40.                         <dt>
  41.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  42.                         </dt>
  43.                         <dd>{{ BaseInfo.company_name }}</dd>
  44.                     </dl>
  45.                 {% endif %}
  46.                 {% if BaseInfo.postal_code|default is not empty %}
  47.                     <dl id="help_about_box__address">
  48.                         <dt>
  49.                             <label class="ec-label">{{ '本社所在地'|trans }}</label>
  50.                         </dt>
  51.                         <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  52.                             {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}<br />
  53.                             {{ 'TEL'|trans }}{{ BaseInfo.phone_number }} {{ 'FAX'|trans }}{{ BaseInfo.fax_no }}
  54.                         </dd>
  55.                     </dl>
  56.                 {% endif %}
  57.                 {% if BaseInfo.fd_addr01|default is not empty %}
  58.                     <dl id="help_about_box__address">
  59.                         <dt>
  60.                             <label class="ec-label">{{ '現地管理事務所'|trans }}</label>
  61.                         </dt>
  62.                         <dd>{{ '〒'|trans }}{{ BaseInfo.zip_no }}<br />
  63.                             {{ BaseInfo.fd_addr01 }}<br />
  64.                             {{ 'TEL'|trans }}{{ BaseInfo.fd_telno }} {{ 'FAX'|trans }}{{ BaseInfo.fd_faxno }}
  65.                         </dd>
  66.                     </dl>
  67.                 {% endif %}
  68.                 {% if BaseInfo.email01|default is not empty %}
  69.                     <dl id="help_about_box__email01">
  70.                         <dt>
  71.                             <label class="ec-label">{{ 'メールアドレス'|trans }}</label>
  72.                         </dt>
  73.                         <a href="mailto:{{ BaseInfo.email01 }}">{{ BaseInfo.email01}}</a>
  74.                     </dl>
  75.                 {% endif %}
  76.                 {% if BaseInfo.fd_gyoumu|default is not empty %}
  77.                     <dl id="help_about_box__fd_gyoumu">
  78.                         <dt>
  79.                             <label class="ec-label">{{ '業務内容'|trans }}</label>
  80.                         </dt>
  81.                         <dd>{{ BaseInfo.fd_gyoumu }}</dd>
  82.                     </dl>
  83.                 {% endif %}
  84.                 {% if BaseInfo.fd_takken|default is not empty %}
  85.                     <dl id="help_about_box__fd_takken">
  86.                         <dt>
  87.                             <label class="ec-label">{{ '宅建業免許'|trans }}</label>
  88.                         </dt>
  89.                         <dd>{{ BaseInfo.fd_takken }}</dd>
  90.                     </dl>
  91.                 {% endif %}
  92.                 {% if BaseInfo.fd_shihon|default is not empty %}
  93.                     <dl id="help_about_box__fd_shihon">
  94.                         <dt>
  95.                             <label class="ec-label">{{ '資本金'|trans }}</label>
  96.                         </dt>
  97.                         <dd>{{ BaseInfo.fd_shihon|nl2br }}</dd>
  98.                     </dl>
  99.                 {% endif %}
  100.                 {% if BaseInfo.fd_employee|default is not empty %}
  101.                     <dl id="help_about_box__fd_employee">
  102.                         <dt>
  103.                             <label class="ec-label">{{ '従業員数'|trans }}</label>
  104.                         </dt>
  105.                         <dd>{{ BaseInfo.fd_employee|nl2br }}</dd>
  106.                     </dl>
  107.                 {% endif %}
  108.                 {% if BaseInfo.fd_daihyou|default is not empty %}
  109.                     <dl id="help_about_box__fd_daihyou">
  110.                         <dt>
  111.                             <label class="ec-label">{{ '代表取締役'|trans }}</label>
  112.                         </dt>
  113.                         <dd>{{ BaseInfo.fd_daihyou|nl2br }}</dd>
  114.                     </dl>
  115.                 {% endif %}
  116.                 {% if BaseInfo.fd_bank|default is not empty %}
  117.                     <dl id="help_about_box__fd_bank">
  118.                         <dt>
  119.                             <label class="ec-label">{{ '取引銀行'|trans }}</label>
  120.                         </dt>
  121.                         <dd>{{ BaseInfo.fd_bank|nl2br }}</dd>
  122.                     </dl>
  123.                 {% endif %}
  124.                 {% if BaseInfo.fd_group|default is not empty %}
  125.                     <dl id="help_about_box__fd_group">
  126.                         <dt>
  127.                             <label class="ec-label">{{ '加入団体'|trans }}</label>
  128.                         </dt>
  129.                         <dd>{{ BaseInfo.fd_group|escape|nl2br }}</dd>
  130.                     </dl>
  131.                 {% endif %}
  132.                 {% if BaseInfo.fd_other|default is not empty %}
  133.                     <dl id="help_about_box__fd_other">
  134.                         <dt>
  135.                             <label class="ec-label">{{ 'その他'|trans }}</label>
  136.                         </dt>
  137.                         <dd>{{ BaseInfo.fd_other|escape|nl2br }}</dd>
  138.                     </dl>
  139.                 {% endif %}
  140.                 {% if BaseInfo.business_hour|default is not empty %}
  141.                     <dl id="help_about_box__business_hour">
  142.                         <dt>
  143.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  144.                         </dt>
  145.                         <dd>{{ BaseInfo.business_hour }}</dd>
  146.                     </dl>
  147.                 {% endif %}
  148.                 {% if BaseInfo.good_traded|default is not empty %}
  149.                     <dl id="help_about_box__good_traded">
  150.                         <dt>
  151.                             <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  152.                         </dt>
  153.                         <dd>{{ BaseInfo.good_traded|nl2br }}</dd>
  154.                     </dl>
  155.                 {% endif %}
  156.             </div>
  157.         </div>
  158.     </div>
  159. </div>
  160. {% endblock %}