summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html')
-rw-r--r--tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html68
1 files changed, 0 insertions, 68 deletions
diff --git a/tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html b/tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html
deleted file mode 100644
index 4cc4afe3..00000000
--- a/tuskar_ui/infrastructure/templates/horizon/common/_data_table_table_actions.html
+++ /dev/null
@@ -1,68 +0,0 @@
-{% load i18n %}
-<div class="table_actions">
-{% block table_filter %}
- {% if filter.filter_type == 'fixed' %}
- <div class="table_filter btn-group" data-toggle="buttons-radio">
- {% for button in filter.fixed_buttons %}
- <button name="{{ filter.get_param_name }}" type="submit" value="{{ button.value }}" class="btn btn-default btn-sm{% ifequal button.value filter.filter_string %} active{% endifequal %}">{% if button.icon %}<i class="{{ button.icon }}"></i> {% endif %}{{ button.text }}{% if button.count >= 0 %} ({{ button.count }}){% endif %}</button>
- {% endfor %}
- </div>
- {% elif filter.filter_type == 'query' %}
- <div class="table_search client">
- <div class="form-group input-group">
- <input class="form-control" value="{{ filter.filter_string|default:'' }}" type="text" name="{{ filter.get_param_name }}" />
- <span class="input-group-btn">
- <button class="btn btn-default" type="submit" {{ filter.attr_string|safe }}>
- <span class="fa fa-lg fa-filter"></span>
- </button>
- </span>
- </div>
- </div>
- {% elif filter.filter_type == 'server' %}
- <div class="table_search">
- <div class="filter_select">
- <select name="{{ filter.get_param_name }}_field" class="form-control">
- {% for choice in filter.filter_choices %}
- <option value="{{ choice.0 }}" {% if choice.0 == filter.filter_field %} selected{% endif %}>{{ choice.1 }}</option>
- {% endfor %}
- </select>
- <span class="caret"></span>
- </div>
- <div class="form-group input-group">
- <input class="form-control filter_select_input" value="{{ filter.filter_string|default:'' }}" type="text" name="{{ filter.get_param_name }}" />
- <span class="input-group-btn">
- <button class="btn btn-default" type="submit" {{ filter.attr_string|safe }}>
- <span class="glyphicon glyphicon-search"></span>
- </button>
- </span>
- </div>
- </div>
- {% endif %}
-{% endblock table_filter %}
-{% block table_actions %}
- <div class="table_actions pull-right">
- {% for action in table_actions_buttons %}
- {% include "horizon/common/_data_table_table_action.html" %}
- {% endfor %}
- {% if table_actions_menu|length > 0 %}
- <div class="btn-group table_actions_menu">
- <a class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" href="#">
- {% if table_actions_buttons|length > 0 %}
- {% trans "More Actions" %}
- {% else %}
- {% trans "Actions" %}
- {% endif %}
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu clearfix">
- {% for action in table_actions_menu %}
- <li class="clearfix">
- {% include "horizon/common/_data_table_table_action.html" %}
- </li>
- {% endfor %}
- </ul>
- </div>
- {% endif %}
- </div>
-{% endblock table_actions %}
-</div>