Merge "Make elastic-recheck web page mention 10 days not 14"
This commit is contained in:
commit
ae64163865
@ -43,7 +43,7 @@ function update() {
|
|||||||
div.appendTo($('#main-container'));
|
div.appendTo($('#main-container'));
|
||||||
$('<h2/>', {text: 'Bug ' + bug['number'] + " - " + bug['bug_data']['name']}).appendTo(div);
|
$('<h2/>', {text: 'Bug ' + bug['number'] + " - " + bug['bug_data']['name']}).appendTo(div);
|
||||||
$('<h3/>', {
|
$('<h3/>', {
|
||||||
text: bug['fails24'] + ' fails in 24hrs / ' + bug['fails'] + ' fails in 14 days'
|
text: bug['fails24'] + ' fails in 24hrs / ' + bug['fails'] + ' fails in 10 days'
|
||||||
}).appendTo(div);
|
}).appendTo(div);
|
||||||
$('<h3/>', {
|
$('<h3/>', {
|
||||||
text: 'Projects: ' + bug['bug_data']['affects']
|
text: 'Projects: ' + bug['bug_data']['affects']
|
||||||
|
@ -39,11 +39,11 @@
|
|||||||
$("#2days").click(function(e) {
|
$("#2days").click(function(e) {
|
||||||
filter_log_age(e, 2);
|
filter_log_age(e, 2);
|
||||||
});
|
});
|
||||||
$("#1week").click(function(e) {
|
$("#7days").click(function(e) {
|
||||||
filter_log_age(e, 7);
|
filter_log_age(e, 7);
|
||||||
});
|
});
|
||||||
$("#2weeks").click(function(e) {
|
$("#10days").click(function(e) {
|
||||||
filter_log_age(e, 14);
|
filter_log_age(e, 10);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@ -72,8 +72,8 @@ Overall Categorization Rate: {{ rate['overall'] }}%
|
|||||||
Generated at: <span id="generated-date">{{ generated_at }}</span>
|
Generated at: <span id="generated-date">{{ generated_at }}</span>
|
||||||
(View: <a id="24hours" href="#">24 hours</a>,
|
(View: <a id="24hours" href="#">24 hours</a>,
|
||||||
<a id="2days" href="#">2 days</a>,
|
<a id="2days" href="#">2 days</a>,
|
||||||
<a id="1week" href="#">1 week</a>,
|
<a id="7days" href="#">7 days</a>,
|
||||||
<a id="2weeks" href="#">2 weeks</a>)
|
<a id="10days" href="#">10 days</a>)
|
||||||
</p>
|
</p>
|
||||||
{% for job in jobs %}
|
{% for job in jobs %}
|
||||||
<a name="{{job[0]}}"></a>
|
<a name="{{job[0]}}"></a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user