Initial Commit

This commit is contained in:
Ben Mosley
2026-08-09 22:36:10 -05:00
commit 2bbf79dcd2
15 changed files with 664 additions and 0 deletions

17
templates/payments.html Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Payments · Superior Finance{% endblock %}
{% block content %}
<h1>Payments</h1>
{% if not payments %}
<p class="empty">No payments logged yet. <a href="{{ url_for('new_payment') }}">Log one</a>.</p>
{% else %}
<ul class="plain">
{% for payment in payments %}
<li>
{{ payment.description }} — ${{ payment.amount }}
<span class="muted"><a href="{{ url_for('view_babystep', slug=payment.babystep.slug) }}">{{ payment.babystep.title }}</a> ({{ payment.received_at }})</span>
</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}