2012-02-06 22:08:08 +01:00
|
|
|
{% extends "base-projector.html" %}
|
2012-02-21 08:21:59 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
{% load tags %}
|
2012-02-21 08:21:59 +01:00
|
|
|
{% load i18n %}
|
2012-04-14 14:51:56 +02:00
|
|
|
{% load staticfiles %}
|
2012-02-21 08:21:59 +01:00
|
|
|
|
2012-10-24 11:04:23 +02:00
|
|
|
{% block title %}{{ block.super }} - {% trans "Motion" %} {{ motion.number }}{% endblock %}
|
2011-07-31 10:46:29 +02:00
|
|
|
{% block content %}
|
|
|
|
<div id="sidebar">
|
|
|
|
<div class="box">
|
2012-07-16 14:00:29 +02:00
|
|
|
<p><b>{% trans "Status" %}:</b><br>
|
2012-10-24 11:04:23 +02:00
|
|
|
{% if motion.status != "pub" %}
|
|
|
|
{% if motion.status == "acc" %}
|
2012-04-30 08:23:50 +02:00
|
|
|
<img src="{% static 'images/icons/voting-yes.png' %}">
|
|
|
|
{% endif %}
|
2012-10-24 11:04:23 +02:00
|
|
|
{% if motion.status == "rej" %}
|
2012-04-30 08:23:50 +02:00
|
|
|
<img src="{% static 'images/icons/voting-no.png' %}">
|
|
|
|
{% endif %}
|
2012-10-24 11:04:23 +02:00
|
|
|
{% trans motion.get_status_display %}
|
2011-09-08 18:57:11 +02:00
|
|
|
{% else %}
|
2012-10-24 11:04:23 +02:00
|
|
|
{% for note in motion.notes %}
|
2011-09-08 18:57:11 +02:00
|
|
|
{{ note }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
2012-10-24 11:04:23 +02:00
|
|
|
{% with motion.polls as polls %}
|
2012-04-30 08:30:04 +02:00
|
|
|
{% if polls.exists and polls.0.has_votes %}
|
2012-05-15 20:36:49 +02:00
|
|
|
<p><b>{% trans "Poll result" %}:</b>
|
2012-04-30 08:30:04 +02:00
|
|
|
{% for poll in polls %}
|
|
|
|
{% if poll.has_votes %}
|
|
|
|
{% if polls|length > 1 %}
|
2012-05-15 20:36:49 +02:00
|
|
|
<p>{{forloop.counter}}. {% trans "Vote" %}:</p>
|
2012-04-30 08:30:04 +02:00
|
|
|
{% endif %}
|
|
|
|
{% with poll.get_options.0 as option %}
|
|
|
|
<div class="results">
|
|
|
|
<img src="{% static 'images/icons/voting-yes.png' %}" title="{% trans 'Yes' %}"> {{ option.Yes }} <br>
|
|
|
|
<img src="{% static 'images/icons/voting-no.png' %}" title="{% trans 'No' %}"> {{ option.No }} <br>
|
|
|
|
<img src="{% static 'images/icons/voting-abstention.png' %}" title="{% trans 'Abstention' %}"> {{ option.Abstain }}<br>
|
|
|
|
<img src="{% static 'images/icons/voting-invalid.png' %}" title="{% trans 'Invalid' %}"> {{ poll.print_votesinvalid }}<br>
|
|
|
|
<hr>
|
|
|
|
<img src="{% static 'images/icons/voting-total.png' %}" title="{% trans 'Votes cast' %}"> {{ poll.print_votescast }}
|
|
|
|
</div>
|
|
|
|
{% endwith %}
|
|
|
|
{% else %}
|
|
|
|
{% if poll|length == 1 %}
|
|
|
|
<i>{% trans "No poll results available." %}</i>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2011-09-08 18:57:11 +02:00
|
|
|
<p><b>{% trans "Submitter" %}:</b><br>
|
2012-10-24 11:04:23 +02:00
|
|
|
{{ motion.submitter }}
|
2012-04-30 08:23:50 +02:00
|
|
|
</p>
|
2011-07-31 10:46:29 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-09-09 22:34:55 +02:00
|
|
|
|
2012-04-20 22:43:12 +02:00
|
|
|
<h1>
|
2012-10-24 11:04:23 +02:00
|
|
|
{% if motion.number != None %}
|
|
|
|
{% trans "Motion No." %} {{ motion.number }}
|
2012-04-20 22:43:12 +02:00
|
|
|
{% else %}
|
2012-08-05 22:31:20 +02:00
|
|
|
{% trans "Motion" %} <i>[{% trans "no number" %}]</i>
|
2012-04-20 22:43:12 +02:00
|
|
|
{% endif %}
|
|
|
|
</h1>
|
2012-10-24 11:04:23 +02:00
|
|
|
<b>{{ motion.public_version.title }}</b>
|
2012-04-24 22:27:16 +02:00
|
|
|
<hr>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scrollcontent %}
|
2011-07-31 10:46:29 +02:00
|
|
|
<p>
|
2012-10-24 11:04:23 +02:00
|
|
|
<div class="text">{{ motion.public_version.text|linebreaks }}</div>
|
|
|
|
{% if motion.public_version.reason %}
|
2011-09-08 18:57:11 +02:00
|
|
|
<br>
|
|
|
|
<div class="reason"><p><b>{% trans "Reason" %}:</b></p>
|
2012-10-24 11:04:23 +02:00
|
|
|
{{ motion.public_version.reason|linebreaks }}</div>
|
2011-09-08 18:57:11 +02:00
|
|
|
{% endif %}
|
2011-07-31 10:46:29 +02:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|