Warning: Can't use blame annotator:
svn blame failed on branches/LCSv2/views/default/list.html.bak: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/branches/LCSv2/views/default/list.html.bak @ 622

Revision 622, 1.3 KB checked in by jdalbey, 6 years ago (diff)

LCS implement closed lane checkboxes

RevLine 
1{{extend 'layout.html'}}
2<div id="pageTitle" class="header">
3    List of Current Log Entries
4</div>
5<p style="text-align: center;">
6    This page is just an exploration.  It won't appear in the final application.  We won't build our pages in this manner, either.
7</p>
8    <table border="1" cellpadding="5" style="margin: 0% 20% 0% 20%;">
9        <tr>
10        <th></th>
11        <th>DTM<br>Area</th>
12        <th>Closure ID / <br>Log No.</th>
13        <th>Route &amp; Dir /<br>Type of Closure</th>
14        <th>Start Date<br>End Date<br>Est. Delay</th>
15        <th>Facility</th>
16        <th>Limits</th>
17        <th>Work<br>Description</th>
18        <th>TMP</th>
19        <th>Requestor/<br>Radio Call No.</th>
20        </tr>
21{{for hwy in highways:}}
22        <tr>
23<td><INPUT type="checkbox"/></td>
24<td align="center">{{=hwy.closureid[0]}}</td>
25<td align="center">{{=hwy.closureid}}<BR><HR>{{=hwy.lognum}}</td>
26<td align="center">{{=hwy.route}}&nbsp;{{=hwy.direction}}<BR><HR>{{=hwy.closuretype}}</td>
27<!-- Format date from YYYYMMDD into MMDDYYY -->
28<td align="center">{{=hwy.startdate}}<BR><HR>{{=hwy.enddate}}<BR><HR>{{=hwy.estdelay}}</td>
29{{=TD(hwy.facility)}}
30<td align="center">{{=hwy.startlocation}}<BR><HR>{{=hwy.endlocation}}</td>
31{{=TD(hwy.worktype)}}
32    <td align="center">{{=hwy.tmpcozeep}}<BR>{{=hwy.tmpdetour}}</td>
33{{=TD(hwy.supervisor)}}
34{{pass}}
35        </tr>
36    </table>
Note: See TracBrowser for help on using the repository browser.