source: tmcsimulator/branches/LCSv1/views/default/list.html.bak @ 593

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

Add branch LCSv1

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