dynamic.tmpl
branchxbelweb
changeset 47 2781ac85b807
child 51 7015d65beb3d
equal deleted inserted replaced
46:d3c1de4d929e 47:2781ac85b807
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
       
     2 <html>
       
     3   <TMPL_INCLUDE NAME="headers.tmpl">
       
     4   <body>
       
     5     <h1><TMPL_VAR remote_user>'s XBelWeb</h1>
       
     6     <p>Total bookmarks: <TMPL_VAR total></p>
       
     7     <form action="index.py" method="get" name="keywords">
       
     8       <input type="hidden" name="view" value="dynamic"/>
       
     9       <fieldset class="keywords">
       
    10         <legend>Keywords:</legend>
       
    11 	<p>
       
    12 	<label>Include:
       
    13 	<select multiple name="sel" onchange="submit()"
       
    14 	        size="<TMPL_VAR kw_size>">
       
    15 	<TMPL_LOOP Keywords>
       
    16 	  <option value="<TMPL_VAR id>"
       
    17 	    <TMPL_IF selected>selected</TMPL_IF>
       
    18 	    ><TMPL_VAR keyword> (<TMPL_VAR count>)</option>
       
    19 	</TMPL_LOOP></select>
       
    20 	<label>Exclude:
       
    21 	<select multiple name="exc" onchange="submit()"
       
    22 	        size="<TMPL_VAR kw_size>">
       
    23 	<TMPL_LOOP Keywords>
       
    24 	  <option value="<TMPL_VAR id>"
       
    25 	    <TMPL_IF excluded>selected</TMPL_IF>
       
    26 	    ><TMPL_VAR keyword> (<TMPL_VAR count>)</option>
       
    27 	</TMPL_LOOP></select>
       
    28 	</p>
       
    29 	<button>Lookup</button>
       
    30       </fieldset>
       
    31     </form>
       
    32     <TMPL_INCLUDE NAME="bkmarks.tmpl">
       
    33     <hr/>
       
    34     <a href="?view=folder">Switch to folder view</a>
       
    35     <TMPL_INCLUDE NAME="footers.tmpl">
       
    36   </body>
       
    37 </html>
       
    38 <!-- Keep this comment at the end of the file
       
    39 Local variables:
       
    40 mode: sgml
       
    41 sgml-omittag:t
       
    42 sgml-shorttag:t
       
    43 sgml-namecase-general:t
       
    44 sgml-general-insert-case:lower
       
    45 sgml-minimize-attributes:nil
       
    46 sgml-always-quote-attributes:t
       
    47 sgml-indent-step:2
       
    48 sgml-indent-data:nil
       
    49 sgml-parent-document:nil
       
    50 sgml-exposed-tags:nil
       
    51 sgml-local-catalogs:nil
       
    52 sgml-local-ecat-files:nil
       
    53 End:
       
    54 vi: syntax=html
       
    55 -->