modify session page UI
This commit is contained in:
parent
e676433ece
commit
63b7dd9a77
|
@ -1,18 +1,76 @@
|
||||||
|
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% load util_functions %}
|
{% load util_functions %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
.metric-scrollbar {
|
||||||
|
position: relative;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: block;
|
||||||
|
height: 400px;
|
||||||
|
padding-left: 25px;
|
||||||
|
border: 2px solid #F5F5F5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.knob-scrollbar {
|
||||||
|
position: relative;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: block;
|
||||||
|
height: 250px;
|
||||||
|
padding-left: 25px;
|
||||||
|
border: 2px solid #F5F5F5;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption > h4 {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%); }
|
||||||
|
caption span {float: right;}
|
||||||
|
|
||||||
|
.session-font {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.session-searchbar {
|
||||||
|
height: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-custom-scrollbar::-webkit-scrollbar {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-custom-scrollbar::-webkit-scrollbar:vertical {
|
||||||
|
width: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-custom-scrollbar::-webkit-scrollbar:horizontal {
|
||||||
|
height: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-custom-scrollbar::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 2px solid white; /* should match background, can't be transparent */
|
||||||
|
background-color: rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
<div id="session" class="container">
|
<div id="session" class="container">
|
||||||
<table class="table table-striped table-bordered table-condensed table-hover">
|
<table class="table table-striped table-bordered table-condensed table-hover">
|
||||||
<caption><h4>{{ labels.title }} (<a href="{% url 'edit_session' project.pk session.pk %}">edit</a>)
|
<caption >
|
||||||
|
<h4> {{ labels.title }}</h4>
|
||||||
|
<span> (<a href="{% url 'edit_session' project.pk session.pk %}">edit</a>)
|
||||||
(<a href="{% url 'edit_knobs' project.pk session.pk %}">edit knobs</a>)
|
(<a href="{% url 'edit_knobs' project.pk session.pk %}">edit knobs</a>)
|
||||||
</h4></caption>
|
</span>
|
||||||
|
</caption>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td><div class="text-right">{{ labels.name }}</div></td>
|
<td style="width: 50%"><div class="text-right">{{ labels.name }}</div></td>
|
||||||
<td>{{ session.name }}</td>
|
<td style="width: 50%">{{ session.name }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% if session.description %}
|
{% if session.description %}
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -60,11 +118,11 @@
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div id="sidebar" class="col-md-3" style="width:30%">
|
||||||
<div id="sidebar" class="col-md-3">
|
|
||||||
<div id="dbmss">
|
<div id="dbmss">
|
||||||
|
|
||||||
<div><h4>DBMS</h4></div>
|
<div><h4>DBMS</h4></div>
|
||||||
<div class="boxbody checkbox">
|
<div class="boxbody checkbox session-font">
|
||||||
<ul>
|
<ul>
|
||||||
{% for dbms_key, dbms in dbmss.items %}
|
{% for dbms_key, dbms in dbmss.items %}
|
||||||
<li><label><input type="checkbox" name="dbms" value="{{ dbms_key }}"/> {{ dbms.full_name }}</label></li>
|
<li><label><input type="checkbox" name="dbms" value="{{ dbms_key }}"/> {{ dbms.full_name }}</label></li>
|
||||||
|
@ -72,9 +130,10 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="workload">
|
<div id="workload">
|
||||||
<div><h4>Workload</h4></div>
|
<div><h4>Workload</h4></div>
|
||||||
<div class="boxbody radio">
|
<div class="boxbody radio session-font">
|
||||||
<ul>
|
<ul>
|
||||||
<li><label><input type="radio" name="workload" value="show_none" /> Display none</label></li>
|
<li><label><input type="radio" name="workload" value="show_none" /> Display none</label></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -94,54 +153,28 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div id="additional_filter">
|
|
||||||
<div><h4>Additional Filter</h4></div>
|
|
||||||
<div class="boxbody">
|
|
||||||
<ul>
|
|
||||||
{% for filter in filters %}
|
|
||||||
<li><label>{{ filter.print }}<select class="selectpicker" name="additional_{{ filter.field }}">
|
|
||||||
<option value="select_all">Select All</option>
|
|
||||||
{% for value in filter.values %}
|
|
||||||
<option value="{{ value }}">{{ value }}</option>
|
|
||||||
{% endfor %}
|
|
||||||
</select></label></li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div> -->
|
|
||||||
<div id="metric">
|
<div id="metric">
|
||||||
<div><h4>Plot Metrics</h4></div>
|
<div><h4>Plot Metrics</h4></div>
|
||||||
<div class="checkbox boxbody">
|
<input type="search" class="form-control session-searchbar session-font" id="metricSearch" placeholder="Filter Metrics">
|
||||||
<table id="metrictable">
|
<div class="checkbox boxbody metric-scrollbar session-font" >
|
||||||
<thead style="display:none;">
|
<table id="metricTable">
|
||||||
<tr>
|
|
||||||
<th>Metrics</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
|
|
||||||
{% for metric in metrics %}
|
{% for metric in metrics %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="background-color: white">
|
<td style="background-color: white;">
|
||||||
<input type="checkbox" name="metric" value="{{ metric }}"> {{ metric_meta|get_item:metric|get_attr:"pprint" }}
|
<input type="checkbox" name="metric" value="{{ metric }}"> {{ metric_meta|get_item:metric|get_attr:"pprint" }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="knob">
|
<div id="knob">
|
||||||
<div><h4>Plot Knobs</h4></div>
|
<div><h4>Plot Knobs</h4></div>
|
||||||
<div class="checkbox boxbody">
|
<input type="search" class="form-control session-searchbar session-font" id="knobSearch" placeholder="Filter Knobs">
|
||||||
<table id="knobtable">
|
<div class="checkbox boxbody knob-scrollbar session-font" >
|
||||||
<thead style="display:none;">
|
<table id="knobTable">
|
||||||
<tr>
|
|
||||||
<th>Knobs</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
|
|
||||||
{% for knob_name in knob_names %}
|
{% for knob_name in knob_names %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="background-color: white">
|
<td style="background-color: white">
|
||||||
|
@ -149,13 +182,15 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-9">
|
|
||||||
|
|
||||||
|
<div class="col-md-9" style="width: 70%">
|
||||||
<div id="configbar" class="row">
|
<div id="configbar" class="row">
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
Show the last
|
Show the last
|
||||||
|
@ -170,7 +205,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="content" class="col-sm-10">
|
<div id="content" class="col-sm-12">
|
||||||
<div id="plotgrid" class="plotcontainer row"></div>
|
<div id="plotgrid" class="plotcontainer row"></div>
|
||||||
<div id="result_table">
|
<div id="result_table">
|
||||||
<h4>Filtered Results</h4>
|
<h4>Filtered Results</h4>
|
||||||
|
@ -196,7 +231,6 @@
|
||||||
<script type="text/javascript" src='{{ STATIC_URL }}js/jquery.dataTables.min.js'></script>
|
<script type="text/javascript" src='{{ STATIC_URL }}js/jquery.dataTables.min.js'></script>
|
||||||
<script type="text/javascript" src='{{ STATIC_URL }}js/FixedHeader.min.js'></script>
|
<script type="text/javascript" src='{{ STATIC_URL }}js/FixedHeader.min.js'></script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -248,4 +282,29 @@ $(function() {
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#metricSearch").on("keyup", function() {
|
||||||
|
var value = $(this).val().toLowerCase();
|
||||||
|
$("#metricTable tr").filter(function() {
|
||||||
|
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#knobSearch").on("keyup", function() {
|
||||||
|
var value = $(this).val().toLowerCase();
|
||||||
|
$("#knobTable tr").filter(function() {
|
||||||
|
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue