templates/edit_kw.tmpl
author fabien@tzone.org
Mon, 05 Jan 2009 18:11:38 -0500
changeset 76 147eddb3826c
parent 59 2c5e38748004
permissions -rw-r--r--
Remove ActionLoader and replace it with a standard dict of new Action objects. Fixes a bad behavior with default action.

<html>
  <TMPL_INCLUDE NAME="headers.tmpl">
  <body>
    <h1><TMPL_VAR remote_user>'s Edit Keywords</h1>
    <form action="" method="get" name="edit">
    	<input type="hidden" name="action" value="keywords"/>
	<label>Keywords:
	<select multiple name="kw" size="<TMPL_VAR kw_size>">
	<TMPL_LOOP Keywords>
	  <option value="<TMPL_VAR id>"><TMPL_VAR keyword></option>
	</TMPL_LOOP></select><br/>
      <button name="step" type="submit" value="merge">Merge</button><br/>
      <button name="step" type="submit" value="rename">Rename</button><br/>
      <button name="step" type="submit" value="delete">Delete</button>
    </form>
  </body>
</html>
<!--
vi: syntax=html
-->