{% extends "base.html" %} {% block content %}
wow
{% if cat %} Results limited by category '{{cat}}'. Undo filter.
{% endif %}
{% if proposals %} {% for p in proposals %} {% if loop.index == 1 %} {% if status == 0 %} {% else %} {% endif %} {% else %} {% if loop.index % 3 == 0 %}
Proposal Username DateFunding
{% endif %} {% endif %} {% endfor %}
{{ p.headline }} {{ p.user.username }} {{ p.date_added.strftime('%Y-%m-%d %H:%M') }} {% if p.funds_progress >= 0.1 and status == 0 %} {{p.funds_progress|int}}% {% else %} - {% endif %}
{% else %} No proposals here yet. {% endif %}
{% include 'sidebar.html' %}

{% endblock %}