X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=templates%2Fsingle_motion.html;h=4c853eebbd022e296030f1deb95336f38f5aa077;hb=2efb3a16046ae08c91b6096a42e8825337612356;hp=c53e4b51307bb67b66d5b7079662fa89bc8c8c29;hpb=a2361dff44b3bf95ad7f367484b6bc805b22819d;p=motion.git diff --git a/templates/single_motion.html b/templates/single_motion.html index c53e4b5..4c853ee 100644 --- a/templates/single_motion.html +++ b/templates/single_motion.html @@ -1,17 +1,17 @@ {% extends "base.html" %} {% block title -%} -Motion: {{motion.name}} +{{_('Motion')}}: {{motion.name}} {%- endblock %} {% block body %} {%- include 'motion.html' %} {%- if votes %}
- Motion Votes + {{_('Motion Votes')}}
{%- for row in votes %} -
{{row.email}}: {{row.result}}{%- if row.proxyemail %} : given by {{row.proxyemail}}{%- endif %}
+
{{row.email}}: {{row.result}}{%- if row.proxyemail %} : {_('given by')}} {{row.proxyemail}}{%- endif %}
{%- endfor %}
@@ -22,20 +22,20 @@ Motion: {{motion.name}} {%- if may_vote %}
-

My vote

+

{{_('My vote')}}

{%- if proxyname %} -Given by {{proxyname[0][0]}} +{{_('Given by')}} {{proxyname[0][0]}} {%- endif %}
-{%- for vote in ['yes','no','abstain'] %} - +{%- for vote in ['yes', 'no', 'abstain'] %} + {%- endfor %}
{%- for p in proxyvote %} -

Vote for {{p.email}}

+

{{_('Vote for')}} {{p.email}}

{%- if p.owneremail and p.result%} -Voted by {{p.owneremail}} +{{_('Voted by')}} {{p.owneremail}} {%- endif %}
{%- for vote in ['yes','no','abstain'] %} @@ -47,18 +47,17 @@ Voted by {{p.owneremail}} {%- if may_cancel %} - -
+ +
{%- endif %} {%- if may_finish %}
-
+
{%- endif %} - {%- endif %} -Back +{{_('Back')}} {%- endblock %}