app/soc/templates/soc/survey/results.html
author Daniel Diniz <ajaksu@gmail.com>
Thu, 09 Jul 2009 10:39:30 +0200
changeset 2576 7a1138f8a0e2
parent 2422 44c500fc0eca
permissions -rw-r--r--
Removed results list from Survey edit. Some changes to the Survey Result page have also been made, however the results viewer and the CSV export are not working properly in that View. Reviewd by: Lennard de Rijk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2422
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     1
{% if list_msg %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     2
  {{ list_msg|safe }}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     3
{% endif %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     4
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     5
{% if list.empty %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     6
  {{ no_lists_msg }}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     7
{% endif %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     8
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
     9
{% for list_number in list.lists %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
    10
  <p>
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
    11
  {% include list.nextList %}
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
    12
  </p>
44c500fc0eca Added templates considering Surveys.
Daniel Diniz <ajaksu@gmail.com>
parents:
diff changeset
    13
{% endfor %}