File:  [Repository] / OSAS / OSA_system / zpt / OSAS_search.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Jul 5 21:08:55 2004 UTC (20 years ago) by casties
Branches: MAIN
CVS tags: HEAD
improved everything, really

    1: <html>
    2: <head>
    3:    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    4:    <title tal:content="here/title">The title</title>
    5: </head>
    6: <body>
    7: 
    8: <h1>Archive and Storage System of the MPIWG</h1>
    9: 
   10: <h2>Search</h2>
   11: 
   12: <p>Search the online and offline archive.</p>
   13: 
   14: <h3>Simple search</h3>
   15: 
   16: <form method="get" action="search">
   17:   <p>Any field
   18:   <select name="searchtype">
   19:     <option tal:condition="python:here.getSearchType() == 'equals'" selected value="equals">equals</option>
   20:     <option tal:condition="python:here.getSearchType() != 'equals'" value="equals">equals</option>
   21:     <option tal:condition="python:here.getSearchType() == 'startswith'" selected value="startswith">starts with</option>
   22:     <option tal:condition="python:here.getSearchType() != 'startswith'" value="startswith">starts with</option>
   23:     <option tal:condition="python:here.getSearchType() == 'contains'" selected value="contains">contains</option>
   24:     <option tal:condition="python:here.getSearchType() != 'contains'" value="contains">contains</option>
   25:   </select>
   26:   <input name="searchstring" tal:attributes="value here/getSearchString"/></p>
   27:   <input type="submit"/>
   28: </form>
   29: 
   30: </body>
   31: </html>
   32: 
   33: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>