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.
23 lines
625 B
23 lines
625 B
<div {{ attributes }}> |
|
<!-- Navigation Tabs --> |
|
<ul class="nav nav-tabs"> |
|
{% for tab in tabs %} |
|
<li class="nav-item"> |
|
<button |
|
class="nav-link {{ activeTab == tab.id ? 'active' : '' }}" |
|
{{ live_action('changeTab', {'id': tab.id }) }} |
|
|
|
> |
|
{{ tab.label }} |
|
</button> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
|
|
<!-- Tab Content --> |
|
<div class="tab-content mt-3"> |
|
<div class="tab-pane fade show active"> |
|
{{ this.tabContent()|raw }} |
|
</div> |
|
</div> |
|
</div>
|
|
|