暫無描述

modal_attributes_nav.html 797B

12345678910111213141516
  1. {% if attributes and attributes|length > 0 %}
  2. <div class="row text-center">
  3. <ul class="nav nav-pills nav-default mr-4" id="pills-tab-custom-attr" role="tablist">
  4. <li class="nav-item">
  5. <a class="nav-link active show" id="pills-home-tab-nobd" data-toggle="pill" href="#details" role="tab" aria-controls="pills-home-nobd" aria-selected="false">Info</a>
  6. </li>
  7. {% for ca in attributes %}
  8. <li class="nav-item submenu">
  9. <a class="nav-link" data-toggle="pill" href="#{{ ca.lower() | replace(' ', '_' ) }}{{page_uid}}{{ loop.index }}" role="tab" aria-controls="{{ ca.lower() | replace(' ', '_' ) }}_{{page_uid}}{{ loop.index }}" aria-selected="false">{{ca}}</a>
  10. </li>
  11. {% endfor %}
  12. </ul>
  13. </div>
  14. {% endif %}