You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
353B

  1. {% macro menu_item(id, active, label) %}
  2. <li class="nav-item">
  3. <a href="#panel-{{ id }} " class="nav-link {{ active ? 'active' }}"
  4. data-toggle="tab" role="tab"
  5. aria-controls="panel-{{ id }}">
  6. {{ label }}
  7. <i class="fa fa-exclamation-circle invalid-form"></i>
  8. </a>
  9. </li>
  10. {% endmacro %}