{% macro proposal_table(title, status, _proposals) %}
Funded
Date
Username
{{title}}
{% for p in _proposals %}
{% if p.comment_count %} {{p.comment_count}} {% else %} - {% endif %}
{% if p.funds_progress >= 0.1 and p.status >= 2 %} {{p.funds_progress|int}}% {% else %} - {% endif %}
{{ p.date_added.strftime('%Y-%m-%d') }}
{% endfor %}
{% endmacro %}