{% extends "propmgr/base.html" %}{% load adminmedia %} {% block content %} {% load propmgr %}

{{ title }}

Contents
{% if do_form %}
{% endif %} {% for proposal in accepted %} {% if forloop.first %}

Accepted ({{ accepted|length }}) contents

{% if do_form %}{% endif %} {% endif %} {% if request.user|can_view_reviews:proposal %} {% if do_form %}{% endif %} {% endif %} {% if forloop.last %}
Change ToVotes Duration Categories Proposal
{{ proposal.form }}{% for review in proposal.review_set.all %}{{ review.score }} {% endfor %} {{ proposal.duration }} {{ proposal.categories|escape }} {% include_proposal_link proposal %}
{% if do_form %}{% endif %} {% endif %} {% endfor %} {% for proposal in declined %} {% if forloop.first %}

Declined ({{ declined|length }}) contents

{% if do_form %}{% endif %} {% endif %} {% if request.user|can_view_reviews:proposal %} {% if do_form %}{% endif %} {% endif %} {% if forloop.last %}
Change ToVotes Duration Categories Proposal
{{ proposal.form }}{% for review in proposal.review_set.all %}{{ review.score }} {% endfor %} {{ proposal.duration }} {{ proposal.categories|escape }} {% include_proposal_link proposal %}
{% if do_form %}{% endif %} {% endif %} {% endfor %} {% for proposal in reviewable %} {% if forloop.first %}

Under Review ({{ reviewable|length }}) contents

{% if do_form %}{% endif %} {% endif %} {% if request.user|can_view_reviews:proposal %} {% if do_form %}{% endif %} {% endif %} {% if forloop.last %}
Change ToVotes Duration Categories Proposal
{{ proposal.form }}{% for review in proposal.review_set.all %}{{ review.score }} {% endfor %} {{ proposal.duration }} {{ proposal.categories|escape }} {% include_proposal_link proposal %}
{% if do_form %}{% endif %} {% endif %} {% endfor %} {% for proposal in other %} {% if forloop.first %}

Other ({{ other|length }}) contents

{% if do_form %}{% endif %} {% endif %} {% if request.user|can_view_reviews:proposal %} {% if do_form %}{% endif %} {% endif %} {% if forloop.last %}
Change ToVotes Status Duration Categories Proposal
{{ proposal.form }}{% for review in proposal.review_set.all %}{{ review.score }} {% endfor %} {{ proposal.get_status_display|escape }} {{ proposal.duration }} {{ proposal.categories|escape }} {% include_proposal_link proposal %}
{% if do_form %}{% endif %} {% endif %} {% endfor %} {% if do_form %}
{% endif %} {% endblock %}