privatecoffee-website/templates/transparency.html
Kumi 4f97edac3e
All checks were successful
Build and Deploy Static Site / build (push) Successful in 40s
feat: Add notice to transparency page to be more transparent
2025-04-03 11:42:46 +02:00

28 lines
1.1 KiB
HTML

{% 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>
<div class="alert alert-warning">
<strong>Notice:</strong> The data is manually updated, so data for the
current month may be a little outdated.
</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">
<h5 class="card-title">Transparency Report for {{ month|month_name }} {{ year }}</h5>
<div class="table-responsive">{{ month_data|safe }}</div>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
{% endblock %}