view zpt/feature/manage_config.zpt @ 276:c886c0cb3455

added xml export for projects.
author casties
date Mon, 23 Feb 2015 22:47:36 +0100
parents c7e6664d60c9
children
line wrap: on
line source

<html>
<div tal:replace="structure here/manage_page_header">Header</div>
<!-- ZOPE management tabs -->
<h2 tal:define="manage_tabs_message options/manage_tabs_message | nothing" tal:replace="structure here/manage_tabs">Tabs</h2>
<!-- end of ZOPE management tabs -->
<h2>Change MPIWG Feature</h2>
<form action="changeMPIWGFeature" method="post">
  <table>
    <tr>
      <td><i>Internal title</i> (for management, in English)</td>
      <td><input type="text" size="50" name="title" tal:attributes="value here/title|nothing"></td>
    </tr>
    <tr>
      <td><i>Weight</i> (number for sorting)</td>
      <td><input type="text" size="5" name="weight" tal:attributes="value here/weight|string:0"></td>
    </tr>
    <tr>
      <td><i>Date</i> (ISO format, e.g. "2013-01-15")</td>
      <td><input type="text" size="10" name="date" tal:attributes="value python:here.getDateString(lang='iso')"></td>
    </tr>
    <tr>
      <td><i>Author</i></td>
      <td><input type="text" size="40" name="author" tal:attributes="value here/author|nothing"></td>
    </tr>
    <tr>
      <td><i>ID/username of author</i></td>
      <td><input type="text" size="20" name="author_id" tal:attributes="value here/author_id|nothing"></td>
    </tr>
    <tr>
      <td><i>Title in English</i> (e.g. "Science under Scrutiny")</td>
      <td><input type="text" size="50" name="title_en" tal:attributes="value python:here.getFullTitle(lang='en')"></td>
    </tr>
    <tr>
      <td><i>Title in German</i></td>
      <td><input type="text" size="50" name="title_de" tal:attributes="value python:here.getFullTitle(lang='de')"></td>
    </tr>
  </table>
  <input type="submit">
</form>
</html>