templates/list_feedbacks.html
author nishanth
Wed, 30 Jun 2010 10:29:38 +0530
changeset 71 1279f0094687
parent 10 7535305b1104
permissions -rw-r--r--
now list of feedbacks and report are viewable only if there are feedbacks submitted.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
7535305b1104 created list feedbacks page
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
7535305b1104 created list feedbacks page
nishanth
parents:
diff changeset
     2
{% block content %}
71
1279f0094687 now list of feedbacks and report are viewable only if there are feedbacks submitted.
nishanth
parents: 10
diff changeset
     3
{% if feeds_list %}
10
7535305b1104 created list feedbacks page
nishanth
parents:
diff changeset
     4
List of feedbacks submitted for the workshop {{event.title}}<br />
7535305b1104 created list feedbacks page
nishanth
parents:
diff changeset
     5
{{feeds_list|unordered_list}}
71
1279f0094687 now list of feedbacks and report are viewable only if there are feedbacks submitted.
nishanth
parents: 10
diff changeset
     6
{% else %}
1279f0094687 now list of feedbacks and report are viewable only if there are feedbacks submitted.
nishanth
parents: 10
diff changeset
     7
No user has submitted a feedback yet.
1279f0094687 now list of feedbacks and report are viewable only if there are feedbacks submitted.
nishanth
parents: 10
diff changeset
     8
{% endif %}
10
7535305b1104 created list feedbacks page
nishanth
parents:
diff changeset
     9
{% endblock %}