-
Notifications
You must be signed in to change notification settings - Fork 9
/
budget.html
62 lines (53 loc) · 2.09 KB
/
budget.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: home
title: Budget
last_modified_date: 2024-09-06
description: Sheet tracking funds committed to the Wikibase Stakeholder Group's mission
nav_order: 3
---
<h1>Budget</h1>
<p>This sheet is used to track funds committed to the Wikibase Stakeholder Group's mission, and how these funds are spent. Though Rhizome may often act as this initiative’s cost center, other institutions may hold and dispense funds pursuant to their spending policies.</p>
<hr>
<table class="budget">
<thead>
<tr>
<th class="date">Date</th>
<th class="position">Position</th>
<th class="Rhizome">Rhizome ($USD)</th>
<!--
<th>NFDI<br><small>in EUR</small></th>
<th>Restriction</th>
-->
</tr>
</thead>
<tbody>
{% for line in site.data.budget.WBSG_Budget %}
{% if lineDate or line.Position %}
<tr>
{% if forloop.index == 1 %}
<td colspan="2" class="balance">{{ line.Position }}</td>
{% else %}
<td class="date">{{ line.Date }}</td>
<td>{{ line.Position }}</td>
{% endif %}
{% if line['Rhizome (in USD)'] %}
{% capture sum %}{{ line['Rhizome (in USD)'] }}{% endcapture %}
<td class="sum">{% include numf.html number=sum ds='.' ts=',' %}</td>
{% else %}
<td></td>
{% endif %}
<!--
{% if line['NFDI (in EUR)'] %}
{% capture sum %}{{ line['NFDI (in EUR)'] }}{% endcapture %}
<td class="sum">{% include numf.html number=sum ds='.' ts=',' %}</td>
{% else %}
<td></td>
{% endif %}
<td>{{ line.Restriction }}</td>
-->
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<p><small><a href="https://github.com/Wikibase-Stakeholder-Group/Budget">Data source</a></small></p>