summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html')
-rw-r--r--tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html b/tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html
deleted file mode 100644
index 1d873133..00000000
--- a/tuskar_ui/infrastructure/templates/horizon/common/_items_count_tab_group.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% with tab_group.get_tabs as tabs %}
-{% if tabs %}
-
- {# Tab Navigation #}
- <ul id="{{ tab_group.get_id }}" {{ tab_group.attr_string|safe }}>
- {% for tab in tabs %}
- <li {{ tab.attr_string|safe }}>
- <a href="?{{ tab_group.param_name}}={{ tab.get_id }}" data-toggle="tab" data-target="#{{ tab.get_id }}" data-loaded='{{ tab.load|yesno:"true,false" }}'>
- {{ tab.name }} {% if tab.get_items_count %} ({{ tab.get_items_count }}) {% endif %}
- </a>
- </li>
- {% endfor %}
- </ul>
-
- {# Tab Content #}
- <div class="tab-content">
- {% for tab in tabs %}
- <div id="{{ tab.get_id }}" class="tab-pane{% if tab.is_active %} active{% endif %}">
- {{ tab.render }}
- </div>
- {% endfor %}
- </div>
-
-{% endif %}
-{% endwith %}