/etc/simba/templates/cgi/ex-index.tmpl is in websimba 0.8.4-4.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <TMPL_INCLUDE NAME="header.tmpl">
<div class="content">
<p>Excludes list:</p>
<TMPL_IF NAME="ExcludesNo">
<table class="sheet" style="width: 80%">
<thead>
<tr>
<td>Mirror ID</td>
<td>Command ID</td>
<td>List</td>
<td>Operations</td>
</tr>
</thead>
<tdata>
<TMPL_LOOP NAME="Excludes">
<tr class="<TMPL_IF NAME="__ODD__"> odd</TMPL_IF><TMPL_UNLESS NAME="__ODD__"> even</TMPL_UNLESS>">
<td><TMPL_VAR NAME="MirrorID"></td>
<td><TMPL_VAR NAME="CommandID"></td>
<td><TMPL_VAR NAME="ExList"></td>
<td class="number">
<a href="simba.cgi?action=mod_ex&id=<TMPL_VAR NAME="id">">
<img title="Modify this exclude" src="/simba-img/comment.gif" />
</a>
<a href="simba.cgi?action=drop_ex&id=<TMPL_VAR NAME="id">">
<img title="Delete this exclude" src="/simba-img/delete.gif" alt="delete" />
</a>
</td>
</tr>
</TMPL_LOOP>
</tdata>
</table>
<TMPL_ELSE>
<p>No excludes found in database.</p>
</TMPL_IF>
<form method="get" action="simba.cgi">
<input type="hidden" name="action" value="add_new_ex" />
<input type="submit" value="add new exclude" />
</form>
</div>
</body>
</html>
|