blob: 3559efe3d583fd443ba0ea884ec0bda5b11085ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<div class="file-tree-header">
<div class="input-group">
{{input class="form-control" value=query placeholder="Filename"}}<a class="hide-file-tree" href="#" {{action "hide"}}>Hide</a>
</div>
<div>
{{#radio-button
value="alphabetical"
groupValue=sortType}}
<span>Sort by name</span>
{{/radio-button}}
{{#radio-button
value="type"
groupValue=sortType}}
<span>Sort by type</span>
{{/radio-button}}
</div>
</div>
<div class="file-tree-content">
<div class="file-tree"></div>
</div>
|