/[transports]/trunk/web/templates/fragments/index.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/web/templates/fragments/index.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (hide annotations)
Fri May 26 19:29:07 2006 UTC (17 years, 11 months ago) by dpavlin
Original Path: trunk/web/templates/transports
File size: 574 byte(s)
added edit transport
1 dpavlin 12 <%args>
2     $transports
3     </%args>
4     <&|/_elements/wrapper&>
5 dpavlin 16 <table border="1" cellspacing="0" cellpadding="3">
6     <tr>
7     <th>source</th>
8     <th>destination</th>
9     <th>request nr</th>
10 dpavlin 21 <th>dependency</th>
11 dpavlin 16 <th>created by</th>
12     </tr>
13    
14 dpavlin 12 % while (my $t = $transports->next) {
15 dpavlin 16 <tr>
16     <td><% $t->source->name %></td>
17     <td><% $t->destination->name %></td>
18     <td><tt><% $t->request_nr %></tt></td>
19     <td>
20 dpavlin 21 <% $t->client_dependent ? 'client' : 'none' %>
21 dpavlin 16 </td>
22     <td>
23     % if ($t->created_by) {
24     <em><% $t->created_by->name %></em>
25     % }
26     </td>
27 dpavlin 26 <td><a href="/edit/<% $t->id %>">edit</a></td>
28 dpavlin 16 </tr>
29 dpavlin 12 % }
30 dpavlin 16 </table>
31 dpavlin 12 </&>

  ViewVC Help
Powered by ViewVC 1.1.26