-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch_form.template.html
37 lines (35 loc) · 1.39 KB
/
search_form.template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<body>
<form>
<table>
<tbody>
<tr><td><h3>Search form</h3></td></tr>
<tr>
<td>Search criteria</td>
<td><input style="width:100%;" type"text" name="q" value="$q" /></td>
</tr>
<tr>
<td></td>
<td><button type="submit" formmethod="get">Submit</button></td>
</tr>
<tr>
<td>Num found</td>
<td>$numFound</td>
</tr>
<tr>
<td>IDs found</td>
<td><textarea cols="50" rows="20" id="idsFound">$idsFound</textarea></td>
</tr>
<tr><td colspan="2">
<h3>Useful links</h3>
<ul>
<li><a target="_blank" href="https://solr.apache.org/guide/8_11/the-standard-query-parser.html">Solr search syntax</href></li>
<li><a target="_blank" href="$scope/static/fields_help.html">Comprehensive description of Cellosaurus cell line fields</href></li>
</ul>
</td></tr>
</tbody>
</table>
</form>
</body>
</html>