kw_confirm.tmpl
author fabien
Tue, 07 Oct 2003 00:05:59 -0400
branchxbelweb
changeset 31 cee64de4e7e0
parent 30 dbf4027d82fc
child 38 c30e2402deca
permissions -rw-r--r--
[svn r1575] Move index.py generic functions into a separate library.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <TMPL_INCLUDE NAME="headers.tmpl">
  <body>
    <h1><TMPL_VAR pagetitle></h1>
    <form name="confirmation" method="post" action="kw_result.py">
      <TMPL_IF confirm_delete>
        <p>Do you really want to remove those keywords?</p>
	<p>
	<TMPL_LOOP Selected>
	  <input type="hidden" name="id" value="<TMPL_VAR id>"/>
	  <TMPL_VAR keyword>;
	</TMPL_LOOP>
	</p>
        <button name="action" type="submit"
              value="<TMPL_VAR action>">Delete</button>
      </TMPL_IF>
      <TMPL_IF confirm_merge>
        <p>Selected keywords:</p>
	<p>
	<TMPL_LOOP Selected>
	  <input type="hidden" name="id" value="<TMPL_VAR id>"/>
	  <TMPL_VAR keyword>;
	</TMPL_LOOP>
	</p>
	<label>Merge them with: <select name="kw">
	<TMPL_LOOP Keywords>
	  <option value="<TMPL_VAR id>"><TMPL_VAR keyword></option>
	</TMPL_LOOP></select><br/>
        <button name="action" type="submit"
              value="<TMPL_VAR action>">Merge</button><br/>
      </TMPL_IF>
      <TMPL_IF confirm_rename>
        <p>Rename<br/>
        <TMPL_LOOP Selected>
	  <label><em><TMPL_VAR keyword></em> to
	  <input type="hidden" name="id" value="<TMPL_VAR id>"/>
	  <input type="text" name="name<TMPL_VAR id>"
	     value="<TMPL_VAR keyword>"/></label><br/>
	</TMPL_LOOP>
        <button name="action" type="submit"
              value="<TMPL_VAR action>">Rename</button><br/>
      </TMPL_IF>
      <button name="action" type="submit" value="cancel">Cancel</button>
    </form>
  </body>
</html>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-namecase-general:t
sgml-general-insert-case:lower
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:nil
sgml-parent-document:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vi: syntax=html
-->