forked from extern/egroupware
Add edit and form templates.
This commit is contained in:
parent
dbee648038
commit
9f74d6ddd9
36
addressbook/templates/justweb/edit.tpl
Normal file
36
addressbook/templates/justweb/edit.tpl
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
<!-- BEGIN edit -->
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
|
||||||
|
<TABLE border="0" cellPadding="1" cellSpacing="1" width="95%">
|
||||||
|
<TBODY>
|
||||||
|
<tr>
|
||||||
|
<TD align="left" width="7%">
|
||||||
|
<input type="submit" name="submit" value="{lang_submit}"></form>
|
||||||
|
</TD>
|
||||||
|
<TD align="left" width="7%">
|
||||||
|
{cancel_link}
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
<INPUT type="submit" name="cancel" value="{lang_cancel}"></form>
|
||||||
|
</TD>
|
||||||
|
<TD align="right">
|
||||||
|
{delete_link}
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
<INPUT type="submit" name="delete" value="{lang_delete}"></form>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
</TBODY>
|
||||||
|
</TABLE>
|
||||||
|
<!-- END edit -->
|
154
addressbook/templates/justweb/form.tpl
Executable file
154
addressbook/templates/justweb/form.tpl
Executable file
@ -0,0 +1,154 @@
|
|||||||
|
|
||||||
|
<!-- BEGIN addressbook entry form -->
|
||||||
|
<table width="75%" border="0" align="center">
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_lastname}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{lastname}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_firstname}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{firstname}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_title}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{title}
|
||||||
|
</font></td>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_email}:
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{email}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_company}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">{company}</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_url}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<input name="url" value="{url}">
|
||||||
|
</td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_hphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{hphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_fax}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{fax}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_wphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{wphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_pager}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{pager}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_mphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{mphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font face="" size="-1" color="#000000">{lang_ophone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{ophone}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_street}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{street}
|
||||||
|
</font></td>
|
||||||
|
<td><font face="" size="-1">{lang_birthday}:</font></td>
|
||||||
|
<td>
|
||||||
|
{birthday}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_address2}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{address2}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_city}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{city}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_state}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{state}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_zip}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{zip}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="4"><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<!-- BEGIN Access -->
|
||||||
|
{access_link}
|
||||||
|
<!-- END Access -->
|
||||||
|
<!-- BEGIN creator -->
|
||||||
|
{create}
|
||||||
|
<!-- END creator -->
|
||||||
|
<td colspan="3">
|
||||||
|
<font size="-1">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font size="-1">{lang_notes}:</font></td>
|
||||||
|
<td colspan="3">
|
||||||
|
<font size="-1">
|
||||||
|
{notes}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<!-- END addressbook entry form -->
|
36
addressbook/templates/verdilak/edit.tpl
Normal file
36
addressbook/templates/verdilak/edit.tpl
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
<!-- BEGIN edit -->
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
|
||||||
|
<TABLE border="0" cellPadding="1" cellSpacing="1" width="95%">
|
||||||
|
<TBODY>
|
||||||
|
<tr>
|
||||||
|
<TD align="left" width="7%">
|
||||||
|
<input type="submit" name="submit" value="{lang_submit}"></form>
|
||||||
|
</TD>
|
||||||
|
<TD align="left" width="7%">
|
||||||
|
{cancel_link}
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
<INPUT type="submit" name="cancel" value="{lang_cancel}"></form>
|
||||||
|
</TD>
|
||||||
|
<TD align="right">
|
||||||
|
{delete_link}
|
||||||
|
<input type="hidden" name="ab_id" value="{ab_id}">
|
||||||
|
<input type="hidden" name="sort" value="{sort}">
|
||||||
|
<input type="hidden" name="order" value="{order}">
|
||||||
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
<input type="hidden" name="start" value="{start}">
|
||||||
|
<INPUT type="submit" name="delete" value="{lang_delete}"></form>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
</TBODY>
|
||||||
|
</TABLE>
|
||||||
|
<!-- END edit -->
|
154
addressbook/templates/verdilak/form.tpl
Executable file
154
addressbook/templates/verdilak/form.tpl
Executable file
@ -0,0 +1,154 @@
|
|||||||
|
|
||||||
|
<!-- BEGIN addressbook entry form -->
|
||||||
|
<table width="75%" border="0" align="center">
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_lastname}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{lastname}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_firstname}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{firstname}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_title}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{title}
|
||||||
|
</font></td>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_email}:
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{email}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_company}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">{company}</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<font color="#000000" face="" size="-1">{lang_url}:</font>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<input name="url" value="{url}">
|
||||||
|
</td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_hphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{hphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_fax}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{fax}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_wphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{wphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_pager}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{pager}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_mphone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{mphone}
|
||||||
|
</font></td>
|
||||||
|
<td><font face="" size="-1" color="#000000">{lang_ophone}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{ophone}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_street}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{street}
|
||||||
|
</font></td>
|
||||||
|
<td><font face="" size="-1">{lang_birthday}:</font></td>
|
||||||
|
<td>
|
||||||
|
{birthday}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_address2}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{address2}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_city}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{city}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font color="#000000" face="" size="-1">{lang_state}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{state}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font face="" size="-1">{lang_zip}:</font></td>
|
||||||
|
<td>
|
||||||
|
<font size="-1">
|
||||||
|
{zip}
|
||||||
|
</font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
<td><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="4"><font size="-1"></font></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<!-- BEGIN Access -->
|
||||||
|
{access_link}
|
||||||
|
<!-- END Access -->
|
||||||
|
<!-- BEGIN creator -->
|
||||||
|
{create}
|
||||||
|
<!-- END creator -->
|
||||||
|
<td colspan="3">
|
||||||
|
<font size="-1">
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><font size="-1">{lang_notes}:</font></td>
|
||||||
|
<td colspan="3">
|
||||||
|
<font size="-1">
|
||||||
|
{notes}
|
||||||
|
</font></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<!-- END addressbook entry form -->
|
Loading…
Reference in New Issue
Block a user