-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_catalogs_form.html
More file actions
55 lines (54 loc) · 3.09 KB
/
_catalogs_form.html
File metadata and controls
55 lines (54 loc) · 3.09 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<form xmlns="http://www.w3.org/1999/xhtml" action="catalogs.html" method="post" data-template="app:catalogs" class="form-inline">
<div class="panel-group">
<!-- add in style overflow:visible to leave dropdown of multiselect plugin not being cropped -->
<div class="panel panel-default" style="overflow:visible;">
<div class="panel-heading">
<h6 class="panel-title">
<a data-toggle="collapse" data-parent="#filters" href="#filters">
<i class="indicator glyphicon glyphicon-chevron-down"/> Filters
</a>
</h6>
</div>
<div id="filters" class="panel-body panel-collapse collapse in">
<fieldset>
<div class="form-inline">
<div class="form-group">
<label class="control-label" for="catalog">catalog:</label>
<select class="form-control" name="catalog" data-template="helpers:form-control">
<option data-template="helpers:select-options" data-template-key="catalogs"/>
</select>
</div>
</div>
</fieldset>
</div>
<div class="panel-footer">
<div class="row form-inline">
<div class="form-group col-md-7" aaadata-template="app:sort-by">
<select class="form-control" aaadata-template="helpers:form-control" name="perpage">
<option>10</option>
<option>25</option>
<option>50</option>
<option>100</option>
</select>
rows max. per page
<!--, sorted by
<select class="form-control" data-template="helpers:form-control" name="sortby">
<option data-template="helpers:select-options" data-template-sorted="no" data-template-key="sortbys"/>
</select>
<input class="checkbox form-control" type="checkbox" name="descending" value="yes" data-template="helpers:form-control"> descending</input>,
<input class="checkbox form-control" type="checkbox" name="all" value="all" data-template="helpers:form-control"> with all columns </input>.
-->
</div>
<div class="form-group col-md-offset-1 col-md-2">
<button type="submit" class="btn btn-primary btn-block">
<i class="glyphicon glyphicon-search"/> Search </button>
</div>
<div class="form-group col-md-2">
<a href="catalogs.html" class="btn btn-default" role="button"> Reset <i class="glyphicon glyphicon-refresh"/>
</a>
</div>
</div>
</div>
</div>
</div>
</form>