Commit 72c08d9c authored by Nicolas Delaby's avatar Nicolas Delaby

update manageForms to set alertCode on subscription

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15496 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3f03a7ed
......@@ -39,7 +39,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Subscription's elements :</br>
<b>Title :</b> the title used to identify the Subscription</br>
<b>Use Activity :</b> activate or not the use of activity.</br>
<b>Use Activity :</b> activate or not the use of activity.</br>
<b>Alert Code :</b> Synchronisation type.</br>
<u>Two Way</u> : A normal sync type in which the client and the server exchange information about modified data in these devices. The client sends the modifications first.<br/>
<u>One way From Server</u> : A sync type in which the client gets all modifications from the server but the client does not send its modifications to the server.<br/>
<b>Publication Url :</b> the server's adrress mail</br>
<b>Subscription Url :</b> the client's address mail</br>
<b>Destination Path :</b> the path where are yours objects</br>
......
......@@ -57,6 +57,23 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<input type="checkbox" name="activity_enabled" value="1" <dtml-if expr="getActivityEnabled()">CHECKED</dtml-if>>
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
Alert Code<br/>
Two way = 200<br/>
One Way From Server = 204
</label></div>
</td>
<td align="left" valign="top">
<select name="alert_code">
<dtml-in getAlertCodeList>
<dtml-let item=sequence-item>
<option value="<dtml-var item>" <dtml-if expr="getAlertCode() == str(item)">SELECTED</dtml-if>><dtml-var item></option>
</dtml-let>
</dtml-in>
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
......
......@@ -53,6 +53,23 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
<input type="checkbox" name="activity_enabled" value="1">
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
Alert Code<br/>
Two way = 200<br/>
One Way From Server = 204
</label></div>
</td>
<td align="left" valign="top">
<select name="alert_code">
<dtml-in getAlertCodeList>
<dtml-let item=sequence-item>
<option value="<dtml-var item>"><dtml-var item></option>
</dtml-let>
</dtml-in>
</td>
</tr>
<tr>
<td align="left" valign="top">
<div class="form-label">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment