Your opinion on this Nomination (voting deadline: {{ nomination.voting_deadline|date:'y-m-d' }}):
{% if request.user.contributor in nomination.in_agreement.all %}
(you have voted: Agreed)
{% elif request.user.contributor in nomination.in_notsure.all %}
(you have voted: Not sure)
{% elif request.user.contributor in nomination.in_disagreement.all %}
(you have voted: Disagree)
{% endif %}
{% if nomination.remark_set.all %}
Remarks on this nomination:
{% for rem in nomination.remark_set.all %}
{{ rem.as_li }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
Submit a new Motion
Motions under consideration
{% for key, val in motion_categories_dict.items %}
{{ val }}:
{% for motion in VGM.motion_set.all %}
{% if motion.category == key %}
{{ motion.as_li }}
Your opinion on this Motion (voting deadline: {{ motion.voting_deadline|date:'y-m-d' }}):
{% if request.user.contributor in motion.in_agreement.all %}
(you have voted: Agreed)
{% elif request.user.contributor in motion.in_notsure.all %}
(you have voted: Not sure)
{% elif request.user.contributor in motion.in_disagreement.all %}
(you have voted: Disagree)
{% endif %}
{% if motion.remark_set.all %}
Remarks on this motion:
{% for rem in motion.remark_set.all %}
{{ rem.as_li }}
{% endfor %}