summaryrefslogtreecommitdiff
path: root/templates/createOrEdit.html
diff options
context:
space:
mode:
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>