Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/unfold/templates/unfold/helpers/tab_list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{% load i18n %}
{% if not is_popup and tabs_list%}
<div id="tabs-wrapper" class="flex items-start flex-col mb-4 md:flex-row md:items-center">
{% include "unfold/helpers/tab_items.html" %}
</div>

{% if not is_popup %}
{% if tabs_list or inlines_list %}
<div id="tabs-wrapper" class="flex items-start flex-col mb-4 md:flex-row md:items-center">
{% include "unfold/helpers/tab_items.html" %}
</div>
{% endif %}
{% endif %}