<p tal:replace="structure here/manage_page_header" omit-tag="">Header</p>
<p tal:replace="structure here/manage_tabs" omit-tag="">tabs</p>


<h2>Edit Modifier</h2>

<form action="edit" method="post">

  <table border="0">

    <tr>
      <th>
        Title
      </th>
      <td>
        <input type="text" name="title" value="" size="40" tal:attributes="value here/title" />
      </td>
    </tr>

      <tr>
        <th>
          Enabled
        </th>
        <td>
          <input type="checkbox" name="enabled" value="True" tal:attributes="checked here/isEnabled" />
        </td>
      </tr>

        <tr>
          <th>
            Condition
          </th>
          <td>
            <input type="text" name="condition" value="" size="80" tal:attributes="value here/getTalesCondition" />
          </td>
        </tr>

        <tr>
          <th>
            Field names to check
          </th>
          <td>
            <textarea name="field_names" value="" rows="4" cols="25"
                      tal:content="here/getFieldNames">
            </textarea>
          </td>
        </tr>

        <tr>
          <th>
            Maximum file size in bytes <br />
            (should not be set larger than 32768000)
          </th>
          <td>
            <input type="text" name="max_size" value=""
                   tal:attributes="value here/max_size" />
          </td>
        </tr>

        <tr>
          <th>
          </th>
          <td colspan="2">
            <input type="submit" name="submit" value="Save" />
          </td>
        </tr>

    </table>

</form>

<p tal:replace="structure here/manage_page_footer" omit-tag="">Footer</p>
