2017-09-06 01:34:00 +02:00
|
|
|
<!-- If you change something here, also change layouts/partial/sub-pages/sigtable.html -->
|
|
|
|
<table id="sigtable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-06-08 18:22:10 +02:00
|
|
|
<th>{{ i18n "subpage_signatures_tableName" }}</th>
|
|
|
|
<th>{{ i18n "subpage_signatures_tableCountry" }}</th>
|
|
|
|
<th>{{ i18n "subpage_signatures_tableComment" }}</th>
|
2017-09-06 01:34:00 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ $json := getJSON "data/signatures/signatures.json" }}
|
|
|
|
{{ $json := where $json "include_vars.permissionPub" "yes" }}
|
|
|
|
|
|
|
|
{{ range sort $json "timestamp" "desc" }}
|
|
|
|
<tr>
|
|
|
|
<td>{{ .include_vars.name }}</td>
|
|
|
|
<td>{{ .include_vars.country }}</td>
|
|
|
|
<td>{{ .include_vars.comment }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|