tbrehm
2005-11-01 b5a2f8deb365d9ea2d4635cb99bb91bd22ff8151
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<form name="myform" action="media_profile_list.php" method="POST">
<div class="frmTextHead"><tmpl_var name="list_head_txt"></div><br />
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td class="tblHead"><tmpl_var name="profile_name_txt"></td>
    <td class="tblHead">&nbsp;</td>
  </tr>
  <tr>
    <td class="frmText11"><input type="text" name="search_profile_name" value="{tmpl_var name='search_profile_name'}" class="text" /></td>
    <td class="frmText11" align="right"><input name="Filter" type="submit" id="Filter" value="Filter"></td>
  </tr>
  <tmpl_loop name="records">
  <tr bgcolor="{tmpl_var name="bgcolor"}">
    <td class="frmText11"><a href="media_profile_edit.php?id={tmpl_var name='id'}" class="frmText11">{tmpl_var name="profile_name"}</a></td>
    <td class="frmText11" align="right">[<a href="javascript: del_record('media_profile_del.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}');" class="frmText11">Löschen</a>]</td>
  </tr>
  </tmpl_loop>
 
  <tr>
      <td colspan="2" height="40" align="center" class="tblFooter"><tmpl_var name="paging"></td>
  </tr>
</table>
</form>