{% extends "base.html" %} {% block content %}
{% include 'messages.html' %}

{{ proposal.headline }}

Posted on {{ proposal.date_added.strftime('%Y-%m-%d') }} by {{ proposal.user.username}}

{% if proposal.user.username == current_user.username or current_user.admin %} {% endif %}


Funds
Target {{proposal.funds_target|round}} WOW
Progress {{proposal.balance['pct'] |round}} %
{{proposal.balance['txs'] | length}} individual contributions {% if proposal.balance['txs'] %} Details... {% endif %}

{{proposal.balance['remaining'] or 0}} WOW available
Donatation address:
{{ proposal.addr_donation }}
{{proposal.html | safe}}
{% include 'comments.html' %} {% if proposal.balance['txs'] %}
Incoming transactions ({{proposal.balance['txs']|length}})
    {% for tx in proposal.balance['txs'] %}
  • {{tx['datetime'].strftime('%Y-%m-%d %H:%M')}} Blockheight: {{tx['height']}}
    {{tx['txid'][:32]}}... + {{tx['amount_human']|round(2)}} WOW
  • {% endfor %}
{% endif %}
{% endblock %}