When searching metrics, the search button doesn't disappear.
This commit is contained in:
@@ -2,13 +2,18 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Metrics</h1>
|
<h1>Metrics</h1>
|
||||||
<div class="ui fluid icon input hide" style="margin-bottom:20px">
|
<div class="ui fluid icon input hide" style="margin-bottom:20px">
|
||||||
<input autofocus="autofocus" class="filter-list" placeholder="Type here to filter...">
|
<input autofocus="autofocus" class="filter-table" placeholder="Type here to filter...">
|
||||||
</div>
|
</div>
|
||||||
<ul class="ui list searchable">
|
<table class='ui very compact very basic sortable table'>
|
||||||
|
<thead>
|
||||||
|
<tr>Metric</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody class="searchable">
|
||||||
{% for metric in metrics %}
|
{% for metric in metrics %}
|
||||||
<li>
|
<tr>
|
||||||
<a href="{{url_for('metric', env=current_env, metric=metric)}}">{{metric}}</a>
|
<td><a href="{{url_for('metric', env=current_env, metric=metric)}}">{{metric}}</a></td>
|
||||||
</li>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</tbody>
|
||||||
|
</table>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
Reference in New Issue
Block a user