source: trunk/gsdl/macros/browse.dm@ 2750

Last change on this file since 2750 was 2718, checked in by dmm9, 23 years ago

changed number of documents to select box rather than text box

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1package browse
2
3_content_{
4
5 _navigationbar_
6
7 _browseinterface_
8
9 _iconblankbar_
10}
11
12_browseinterface_{
13
14<form name=BrowseForm method=get action="_gwcgi_">
15
16<input type=hidden name="a" value="br">
17<input type=hidden name="e" value="_decodedcompressedoptions_">
18
19 _textbrowseby_ _browsebox1_ _textthenby_ _browsebox2_ _textshowing_
20 _docnum_ _textdocsperpage_<p>
21
22 _textfilterby_ _anyallselect_ _textwords_ _filterbox_
23
24 <div align=right>_browsebutton_</div>
25</form>
26
27}
28
29_browsebutton_{<input type=submit value=_browsebuttontext_>}
30
31_docnum_{
32<select name="bnu">
33 <option _If_("_cgiargbnu_" eq "5", selected)>5
34 <option _If_("_cgiargbnu_" eq "10", selected)>10
35 <option _If_("_cgiargbnu_" eq "20", selected)>20
36 <option _If_("_cgiargbnu_" eq "50", selected)>50
37 <option value="-1" _If_("_cgiargbnu_" eq "-1", selected)>max
38</select>
39}
40
41_filterbox_{<input type=text name="bft" value="_cgiargbft_" size=40>}
42
43
44_anyallselect_{
45<select name="bt">
46 <option value="0"_If_(_cgiargbt_,, selected)>_textany_
47 <option value="1"_If_(_cgiargbt_, selected)>_textall_
48</select>
49}
50
51
52
53
54
55
56
57
58
59
60
Note: See TracBrowser for help on using the repository browser.