[LNT] r331031 - Display order url via proper template method in v4_machine.html.

Martin Liska via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 27 05:27:09 PDT 2018


Author: marxin
Date: Fri Apr 27 05:27:09 2018
New Revision: 331031

URL: http://llvm.org/viewvc/llvm-project?rev=331031&view=rev
Log:
Display order url via proper template method in v4_machine.html.

Differential Revision: https://reviews.llvm.org/D44006.


Modified:
    lnt/trunk/lnt/server/ui/templates/v4_machine.html

Modified: lnt/trunk/lnt/server/ui/templates/v4_machine.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_machine.html?rev=331031&r1=331030&r2=331031&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_machine.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_machine.html Fri Apr 27 05:27:09 2018
@@ -94,7 +94,7 @@
     {% for run in runs %}
     <tr>
       {% if loop.first %}
-      <td rowspan="{{ runs|length }}" style="text-align:right">local.{{ order.as_ordered_string() }}</td>
+      <td rowspan="{{ runs|length }}" style="text-align:right">{{local.render_order_link(order)}}</td>
       {% endif %}
       <td><span class="utctime">{{ run.start_time.isoformat() }}</span></td>
       <td>{{ run.end_time - run.start_time }}s</td>




More information about the llvm-commits mailing list