[llvm-commits] [LNT] r165453 - /lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html
Daniel Dunbar
daniel at zuster.org
Mon Oct 8 16:03:06 PDT 2012
Author: ddunbar
Date: Mon Oct 8 18:03:06 2012
New Revision: 165453
URL: http://llvm.org/viewvc/llvm-project?rev=165453&view=rev
Log:
daily_report: Reverse order as a hack to get execution time first.
Modified:
lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html
Modified: lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html?rev=165453&r1=165452&r2=165453&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html (original)
+++ lnt/trunk/lnt/server/ui/templates/reporting/daily_report.html Mon Oct 8 18:03:06 2012
@@ -56,7 +56,7 @@
{# Generate the table showing the raw sample data. #}
{% set graph_base=v4_url_for('v4_graph') %}
-{% for field,field_results in report.result_table %}
+{% for field,field_results in report.result_table|reverse %}
<h3>Result Table ({{ field.name }})</h3>
<table border="1" style="{{ styles.table }}">
<thead>
More information about the llvm-commits
mailing list