-
Notifications
You must be signed in to change notification settings - Fork 0
/
collections.html
26 lines (26 loc) · 1.55 KB
/
collections.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
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml" data-template="templates:surround" data-template-with="templates/page.html" data-template-at="content">
<div data-template="app:collections">
<h1>Collections: </h1>
<form>
<label class="control-label" for="coltypes">Collection types: </label>
<span data-template="helpers:each" data-template-from="types" data-template-to="type">
<input type="checkbox" name="type" checked="c" data-template="helpers:form-control"/>
<span data-template="helpers:model-value" data-template-key="type"/>
</span>
<button type="submit" class="btn btn-primary">filter</button>
</form>
<h2 data-template="helpers:if-model-key" data-template-key="vizier-collections">VizieR astronomical catalogues</h2>
<div class="row">
<div class="list-group col-md-offset-1 col-md-10">
<div data-template="helpers:render" data-template-partial="_collection-short.html" data-template-key="vizier-collections" data-template-as="collection"/>
</div>
</div>
<h2 data-template="helpers:if-model-key" data-template-key="other-collections">Other collections</h2>
<div class="row">
<div class="list-group col-md-offset-1 col-md-10">
<div data-template="helpers:render" data-template-partial="_collection-short.html" data-template-key="other-collections" data-template-as="collection"/>
</div>
</div>
</div>
</div>