source: trunk/templates/reclist.tmpl@ 60

Last change on this file since 60 was 60, checked in by Kris Deugau, 14 years ago

/trunk

Littleish cosmetic tweaks to log display
Tweaks to calls into log display page so that it shows the right data
Stub in section to show log for a user (not sure how useful this will

be...) - NB, this is not linked from anywhere and not present at all
in Vega's implementation

File size: 2.3 KB
Line 
1<!-- <TMPL_VAR NAME=sid> -->
2<table class="wholepage"><tr>
3<TMPL_INCLUDE NAME="menu.tmpl">
4
5<td align="center" valign="top">
6
7 <TMPL_IF del_failed>
8 <div class='errmsg'>Error deleting record: <TMPL_VAR NAME=errmsg></div>
9 </TMPL_IF>
10
11<!-- FIXME: long data in records causes record list table to overflow one or another container -->
12
13<table><tr><td>
14
15<div class="center">Records<TMPL_IF NAME=parent> in <TMPL_VAR NAME=parent></TMPL_IF></div>
16
17<TMPL_INCLUDE NAME=soadata.tmpl>
18
19<table border="0" width="100%">
20<tr class="darkrowheader">
21 <td colspan="2" align="left">
22 <TMPL_INCLUDE NAME="pgcount.tmpl">
23 </td>
24 <td colspan="2" align="center">
25 <TMPL_INCLUDE NAME="fpnla.tmpl">
26 </td>
27 <td colspan="2" align="right">
28 <form action="dns.cgi">
29 <fieldset>
30 <input type="hidden" name="sid" value="<TMPL_VAR NAME=sid>" />
31 <input name="search" />
32 <input type="submit" value="Filter" />
33 </fieldset>
34 </form>
35 </td>
36</tr>
37<tr class="darkrowheader">
38 <td colspan="4">Records</td>
39 <td align="right"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=record&amp;parentid=<TMPL_VAR NAME=id>&amp;defrec=<TMPL_VAR NAME=defrec>&amp;recact=new">Add record</a></td>
40 <td align="right"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=log&amp;id=<TMPL_VAR NAME=id><TMPL_IF logdom>&amp;ltype=dom</TMPL_IF>">View log</a></td>
41</tr>
42
43</table>
44
45<table width="100%">
46<TMPL_IF reclist>
47<tr class="darkrowheader">
48 <td>Name</td>
49 <td>Type</td>
50 <td>Address</td>
51 <td>Distance</td><td>Weight</td><td>Port</td><td>TTL</td><td>Delete</td></tr>
52<TMPL_LOOP NAME=reclist>
53<tr class="row<TMPL_VAR NAME=row>">
54 <td><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=record&amp;parentid=<TMPL_VAR NAME=id>&amp;defrec=<TMPL_VAR NAME=defrec>&amp;recact=edit&amp;id=<TMPL_VAR NAME=record_id>"><TMPL_VAR NAME=host></a></td>
55 <td><TMPL_VAR NAME=type></td>
56 <td><TMPL_VAR NAME=val></td>
57 <td><TMPL_VAR NAME=distance></td>
58 <td><TMPL_VAR NAME=weight></td>
59 <td><TMPL_VAR NAME=port></td>
60 <td><TMPL_VAR NAME=ttl></td>
61 <td align="center"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=delrec&amp;id=<TMPL_VAR NAME=record_id>&amp;defrec=<TMPL_VAR NAME=defrec>&amp;parentid=<TMPL_VAR NAME=id>"><img src="images/trash2.png" alt="[ Delete ]" /></a></td>
62</tr>
63</TMPL_LOOP>
64<TMPL_ELSE>
65<tr><td colspan="5">No records found</td></tr>
66</TMPL_IF>
67</table>
68
69</td></tr></table>
70<!-- /div -->
71
72</td>
73</tr>
74</table>
Note: See TracBrowser for help on using the repository browser.