{% extends "cf/public_access_wrapper.html" %}
{% load juntagrico.config %}
{% block page_title %}
{{ fp.title }}
{% endblock %}
{% block content %}
{{ fp.vocabulary_fundables }}
Bezeichnung |
noch verfügbar |
Betrag pro Einheit |
{% for f in fundables %}
{% if f.available > 0 %}
{{ f.name }} |
{{ f.available }} |
{{ f.price }} {% config "currency" %} |
{% endif %}
{% endfor %}
{% for f in fundables %}
{% if f.available == 0 %}
{{ f.name }} |
{{ f.available }} |
{{ f.price }} {% config "currency" %} |
{% endif %}
{% endfor %}
{% if user.is_authenticated and my_funds.count > 0 %}
Deine {{ fp.vocabulary_fundables }}
Name |
Betrag |
Eingegangen am |
Bezahlt am |
{% for m in my_funds %}
{{ m.fundable.name }} |
{{ m.contribution }} {% config "currency" %} |
{{ m.date_ordered }} |
{{ m.date_paid | default_if_none:"Ausstehend" }} |
{% endfor %}
{% endif %}
{% endblock %}