diff options
Diffstat (limited to 'templates/polls/poll_list.html')
-rwxr-xr-x | templates/polls/poll_list.html | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/polls/poll_list.html b/templates/polls/poll_list.html deleted file mode 100755 index 2888cf2..0000000 --- a/templates/polls/poll_list.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends 'polls/base.html' %} - -{% block content %} -{% if object_list %} - <ul> - {% for object in object_list %} - <li>{{ object.question }} {{ object.all }}</li> - {% endfor %} - </ul> -{% else %} - <p>No polls are available.</p> -{% endif %} - {% endblock %} - |