blob: 7f20c2c6bd5d218e260c570232ef943b3de7f31f (
plain)
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
|
{{define "overview"}}
<head>
{{template "header"}}
</head>
<body>
{{template "nav"}}
<div id="wrap">
<div class="container">
<h3>Existing galaxies</h3>
<table cellpadding="0" cellspacing="0" border="0" class="datatable table table-striped table-bordered">
<thead>
<tr>
<th>Index</th>
<th>Boundary</th>
<th>Amounf of stars</th>
<th>Range</th>
</tr>
</thead>
<tbody>
<tr class="gradeX">
<td>1</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="gradeX">
<td>2</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="gradeX">
<td>3</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
</div>
{{template "javascript"}}
</body>
{{end}}
|