publiccode.si/site/layouts/shortcodes/show_signatures.html

22 lines
859 B
HTML
Raw Permalink Normal View History

<!-- 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>
</tr>
</thead>
<tbody>
{{ $signatures := getJSON "data/signatures/signatures.json" }}
{{ $signatures := where $signatures "include_vars.permissionPub" "yes" }}
{{ $countries := getJSON "data/countries/countries.json" }}
{{ range sort $signatures "timestamp" "desc" }}
<tr>
<td>{{ .include_vars.name }}</td>
<td>{{ (index (where $countries "genc2a" .include_vars.country) 0).name | default .include_vars.country}}</td> <!-- finds the two-letter code in countries.json (first match), and prints the full name -->
</tr>
{{ end }}
</tbody>
</table>