list_feedbacks.html
author nishanth
Fri, 09 Apr 2010 15:35:40 +0530
changeset 6 057498d12450
parent 5 37e4027fba48
child 12 f57b0a7f24d9
permissions -rw-r--r--
users can now register but still there is no concept of activation e-mail .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 5
diff changeset
     1
{% extends "base.html" %}
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 5
diff changeset
     2
{% block content %}
5
37e4027fba48 submit and list feedback done
nishanth
parents:
diff changeset
     3
{% for feed in feeds %}
37e4027fba48 submit and list feedback done
nishanth
parents:
diff changeset
     4
    {{ feed }}<br />
37e4027fba48 submit and list feedback done
nishanth
parents:
diff changeset
     5
{% endfor %}
37e4027fba48 submit and list feedback done
nishanth
parents:
diff changeset
     6
<a href="/feedback/submit">submit another one here</a>
6
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 5
diff changeset
     7
{% endblock %}