[LNT] r253325 - [html] Uniquify input id when the template is instantiated. NFC.

Arnaud A. de Grandmaison via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 17 01:14:16 PST 2015


Author: aadg
Date: Tue Nov 17 03:14:16 2015
New Revision: 253325

URL: http://llvm.org/viewvc/llvm-project?rev=253325&view=rev
Log:
[html] Uniquify input id when the template is instantiated. NFC.

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

Modified: lnt/trunk/lnt/server/ui/templates/v4_run.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_run.html?rev=253325&r1=253324&r2=253325&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_run.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_run.html Tue Nov 17 03:14:16 2015
@@ -312,7 +312,7 @@
       <table class="table table-striped table-hover table-condensed sortable">
         <thead>
           <tr>
-            <th rowspan="1" class="sorttable_nosort"><input type="checkbox" id="select-all" onClick="selectAll(this)"></th>
+            <th rowspan="1" class="sorttable_nosort"><input type="checkbox" id="select-all-{{ field.name }}" onClick="selectAll(this)"></th>
             <th rowspan="1">Name</th>
             {% if options.show_previous %}<th>Prev</th>{% endif %}
             <th>Current</th>




More information about the llvm-commits mailing list