2001-05-10 14:19:56 +02:00
|
|
|
<!-- BEGIN addressbook_header -->
|
2003-12-03 05:28:20 +01:00
|
|
|
<script>
|
|
|
|
function check_all(which)
|
|
|
|
{
|
|
|
|
for (i=0; i<document.addr_index.elements.length; i++)
|
|
|
|
{
|
|
|
|
if (document.addr_index.elements[i].type == "checkbox" && document.addr_index.elements[i].name.substring(0,which.length) == which)
|
|
|
|
{
|
|
|
|
if (document.addr_index.elements[i].checked)
|
|
|
|
{
|
|
|
|
document.addr_index.elements[i].checked = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.addr_index.elements[i].checked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2003-12-12 22:42:00 +01:00
|
|
|
<div align="center">
|
2003-08-28 16:16:30 +02:00
|
|
|
{lang_showing}
|
|
|
|
<br>{searchreturn}
|
|
|
|
{search_filter}
|
|
|
|
<table width="95%" border="0" cellspacing="1" cellpadding="3">
|
2003-12-03 05:28:20 +01:00
|
|
|
<form name="addr_index" action="{action_url}" method="POST">
|
2003-08-28 16:16:30 +02:00
|
|
|
<tr bgcolor="{th_bg}">{cols}
|
2003-12-03 05:28:20 +01:00
|
|
|
<td width="5%" height="21"><font face="Arial, Helvetica, sans-serif" size="-1">{lang_actions}</font>
|
|
|
|
<a href="javascript:check_all('select')"><img src="{check}" border="0" height="16" width="21" alt="{select_all}"></a></td>
|
2003-08-28 16:16:30 +02:00
|
|
|
</tr>
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- END addressbook_header -->
|
2001-08-09 02:41:41 +02:00
|
|
|
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- BEGIN column -->
|
2003-12-03 05:28:20 +01:00
|
|
|
<td valign="top"><font face="Arial, Helvetica, san-serif" size="2">{col_data} </font></td>
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- END column -->
|
2001-08-09 02:41:41 +02:00
|
|
|
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- BEGIN row -->
|
2003-12-03 05:28:20 +01:00
|
|
|
<tr bgcolor="{row_tr_color}">{columns}
|
|
|
|
<td valign="top" nowrap>{actions}</td>
|
|
|
|
</tr>
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- END row -->
|
2001-08-09 02:41:41 +02:00
|
|
|
|
2003-12-03 05:28:20 +01:00
|
|
|
<!-- BEGIN delete_block -->
|
|
|
|
<tr bgcolor="{row_tr_color}"><td colspan="{column_count}"> </td>
|
|
|
|
<td align="right"><input type="submit" name="Delete" value="{lang_delete}"></td>
|
|
|
|
</tr>
|
|
|
|
<!-- END delete_block -->
|
|
|
|
|
|
|
|
<!-- BEGIN addressbook_footer -->{delete_button}
|
|
|
|
</form>
|
2001-05-10 14:19:56 +02:00
|
|
|
</table>
|
2003-12-12 22:42:00 +01:00
|
|
|
<table border="0" cellspacing="0" cellpadding="2">
|
|
|
|
<tr bgcolor="{th_bg}">
|
|
|
|
<form action="{add_url}" method="post"><td><input type="submit" name="Add" value="{lang_add}" /></td></form>
|
|
|
|
<form action="{vcard_url}" method="post"><td><input type="submit" name="AddVcard" value="{lang_addvcard}" /></td></form>
|
|
|
|
<form action="{import_url}" method="post"><td><input type="submit" name="Import" value="{lang_import}" /></td></form>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<table border="0" cellspacing="0" cellpadding="2">
|
|
|
|
<tr bgcolor="{th_bg}">
|
|
|
|
|
|
|
|
<form action="{import_alt_url}" method="post"><td><input type="submit" name="Import" value="{lang_import_alt}" /></td></form>
|
|
|
|
<form action="{export_url}" method="post"><td><input type="submit" name="Export" value="{lang_export}" /></td></form>
|
2001-05-10 14:19:56 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
2003-12-12 22:42:00 +01:00
|
|
|
</div>
|
2001-05-10 14:19:56 +02:00
|
|
|
<!-- END addressbook_footer -->
|