aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools/web_config/partials/history.html
diff options
context:
space:
mode:
Diffstat (limited to 'share/tools/web_config/partials/history.html')
-rw-r--r--share/tools/web_config/partials/history.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/share/tools/web_config/partials/history.html b/share/tools/web_config/partials/history.html
new file mode 100644
index 00000000..2093f714
--- /dev/null
+++ b/share/tools/web_config/partials/history.html
@@ -0,0 +1,16 @@
+<div id="table_filter_container">
+ <span ng-show="loadingText.length > 0"> {{ loadingText }} </span>
+ <input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="queryInput">
+</div>
+<table class="data_table">
+ <tbody>
+ <tr ng-repeat="item in historyItems | filter:query">
+ <td ng-class="{'history_text': true, 'no_overflow': selectedItems.indexOf(item) < 0}" ng-click="selectItem(item)">{{ item }}</td>
+ <td class="history_delete">
+ <a ng-click="deleteHistoryItem(item)">
+ <img class="delete_icon" src="delete.png">
+ </a>
+ </td>
+ </tr>
+ </tbody>
+</table>