{% if _cfg("public-income") == "yes" %}
{% set total_sum = recurring_sum + patreon_sum %} {% set total_count = recurring_count + patreon_count %} {% if _cfg("goal") %} {% set goal = int(_cfg("goal")) %} {% set recurring_progress = recurring_sum / goal %} {% set patreon_progress = patreon_sum / goal %} {% set progress = total_sum / goal %}
${{ "{:.0f}".format(recurring_sum / 100) }}
${{ "{:.0f}".format(patreon_sum / 100) }}
{% endif %}
{% if patreon_count %}

${{ "{:.2f}".format(recurring_sum / 100) }}/mo via {{ domain }} ({{ recurring_count }} supporter{{ "s" if recurring_count != 1 else "" }})

${{ "{:.2f}".format(patreon_sum / 100) }}/mo via Patreon ({{ patreon_count }} supporter{{ "s" if patreon_count != 1 else "" }})

{% endif %} {% if goal %}

${{ "{:.2f}".format(total_sum / 100)}}/mo of ${{ "{:.2f}".format(goal / 100) }}/mo goal

{% else %}

Supported with ${{ "{:.2f}".format(total_sum / 100) }} from {{ total_count }} supporters!

{% endif %}
{% include "goal-summary.html" %}
{% endif %}