diff --git a/pinaxcon/templates/symposion/proposals/_proposal_row.html b/pinaxcon/templates/symposion/proposals/_proposal_row.html index 012c3e84e0574f7c64e8f1f503f738aca8855059..5b1fdf5bd52c7f06b2321874cca6c2cda92dc53e 100644 --- a/pinaxcon/templates/symposion/proposals/_proposal_row.html +++ b/pinaxcon/templates/symposion/proposals/_proposal_row.html @@ -1,5 +1,13 @@
-
+ {% if proposal.result.status == "accepted" %} +
+ {% elif proposal.result.status == "rejected" %} +
+ {% elif proposal.result.status == "standby" %} +
+ {% else %} +
+ {% endif %}
{{ proposal.title }}
@@ -14,6 +22,10 @@ {% if request.user == proposal.speaker.user %} {% if proposal.result.status == "accepted" %} Accepted + {% elif proposal.result.status == "rejected" %} + Rejected + {% elif proposal.result.status == "standby" %} + Standby {% else %} Submitted {% endif %}