2024-06-03 14:12:21 +00:00
|
|
|
{% extends "base.html" %} {% block title %}Membership / Donations{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container my-5">
|
|
|
|
<div class="text-center mb-5">
|
|
|
|
<h1 class="special-header fancy-text-primary">Transparency</h1>
|
|
|
|
<p class="lead">
|
|
|
|
Private.coffee is funded by its members and donations. We believe in
|
|
|
|
transparency and accountability. Below you can find financial reports for
|
|
|
|
each month since our inception.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% for year, year_data in finances.items() %}
|
|
|
|
{% for month, month_data in year_data.items() %}
|
|
|
|
<div class="card shadow-sm mt-4">
|
|
|
|
<div class="card-body">
|
2024-07-01 10:06:30 +00:00
|
|
|
<h5 class="card-title">Transparency Report for {{ month|month_name }} {{ year }}</h5>
|
2024-06-03 14:12:21 +00:00
|
|
|
<div class="table-responsive">{{ month_data|safe }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|