diff options
Diffstat (limited to 'templates/createOrEdit.html')
-rw-r--r-- | templates/createOrEdit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/createOrEdit.html b/templates/createOrEdit.html index e76decd..4cc7420 100644 --- a/templates/createOrEdit.html +++ b/templates/createOrEdit.html @@ -52,7 +52,7 @@ <th>{% trans "Choices" %}</th><th>{% trans "Label" %}</th><th>{% trans "Limit" %}</th><th>{% trans "Delete?"%}</th> </tr> {% for choice in choices %}<tr> - <td> </td><td>{{choice.name}}</td><td>{%if choice.limit%}{% blocktrans with choice.limit as choice_limit%}Limited to {{choice_limit}} vote(s){% endblocktrans %}{%endif%}</td><td><input type='checkbox' name='delete_{{choice.id}}'/></td> + <td> </td><td><input type='text' name='modify_{{choice.id}}' value="{{choice.name}}"/></td><td>{%if choice.limit%}{% blocktrans with choice.limit as choice_limit%}Limited to {{choice_limit}} vote(s){% endblocktrans %}{%endif%}</td><td><input type='checkbox' name='delete_{{choice.id}}'/></td> </tr> {% endfor %}{% endif %} <tr> |