inc.moveSettings.tmpl 907 B

1234567891011121314151617181920212223
  1. <table>
  2. <tr>
  3. <td valign="top" align="left"><label for="categorylist">Target-Dirs:</label> </td>
  4. <td valign="top" align="left">
  5. <select name="categorylist" id="categorylist" size="3">
  6. <tmpl_if name="moveSettings_move_list">
  7. <tmpl_loop name="moveSettings_move_list">
  8. <option value="<tmpl_var name="target">"><tmpl_var name="target"></option>
  9. </tmpl_loop>
  10. </tmpl_if>
  11. </select>
  12. <input type="button" name="remCatButton" value="remove" onclick="removeMoveEntry()">
  13. </td>
  14. </tr>
  15. <tr>
  16. <td valign="top" align="left"><label for="category">New Target-Dir:</label> </td>
  17. <td valign="top" align="left">
  18. <input type="text" name="category" id="category" size="30">
  19. <input type="button" name="addCatButton" value="add" onclick="addMoveEntry()" size="30">
  20. <input type="hidden" name="move_paths" value="<tmpl_var name="moveSettings_move_paths">">
  21. </td>
  22. </tr>
  23. </table>