summaryrefslogtreecommitdiff
path: root/templates/createOrEdit.html
diff options
context:
space:
mode:
authoretienne2008-12-07 16:38:26 +0000
committeretienne2008-12-07 16:38:26 +0000
commit80b30ee1f188824f411b2e84673008a8d1383e7a (patch)
tree05d99c950013d2f2b48198562665433f3d23de21 /templates/createOrEdit.html
parent599c62e4e77aaa4898b9ba690e39b1102ac09a71 (diff)
Migration to sqlite - Hide results to new voters
Diffstat (limited to 'templates/createOrEdit.html')
-rw-r--r--templates/createOrEdit.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/createOrEdit.html b/templates/createOrEdit.html
index 3e88bfe..033edec 100644
--- a/templates/createOrEdit.html
+++ b/templates/createOrEdit.html
@@ -52,11 +52,11 @@
</tr>{% endif %}
<tr>
- <td><label for='poll_public'>{% trans "Public" %}</label></td>
+ <td><label for='poll_public'>{% trans "Visibility" %}</label></td>
<td colspan='2'>
<select name='poll_public'>
- <option value='1'{%if poll.public %} selected='selected'{%endif%}>{%trans "Yes"%}</option>
- <option value='0'{%if not poll.public %} selected='selected'{%endif%}>{%trans "No"%}</option>
+ <option value='0'{%if not poll.public %} selected='selected'{%endif%}>{%trans "Private"%}</option>
+ <option value='1'{%if poll.public %} selected='selected'{%endif%}>{%trans "Public"%}</option>
</select>
</td>
<td class='form_description'>{% trans "If the poll is public it is available on the main page" %}</td>