author | Nishanth Amuluru <nishanth@fossee.in> |
Sat, 08 Jan 2011 22:40:19 +0530 | |
changeset 96 | 3e0636969095 |
parent 69 | c6bca38c1cbf |
permissions | -rw-r--r-- |
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
2 |
{% block content %} |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
3 |
{% if not notifications %} |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
4 |
You have no notifications. |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
5 |
{% else %} |
66
37adf6656f48
Added full_name and prettified the page
Nishanth Amuluru <nishanth@fossee.in>
parents:
45
diff
changeset
|
6 |
Notifications: <br /> |
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
{% for notification in notifications %} |
38
c8c47fcb46f0
created a view for view notification and included the url. made changes accordingly in browse notifications
Nishanth Amuluru <nishanth@fossee.in>
parents:
37
diff
changeset
|
8 |
<a href="/profile/notf/view/nid={{notification.uniq_key}}"> |
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
9 |
{% if not notification.is_read %} <b> {% endif %} |
45 | 10 |
{{notification.subject}} |
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
11 |
{% if not notification.is_read %} </b> {% endif %}</a><br /> |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
12 |
{% endfor %} |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
13 |
{% endif %} |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
14 |
{% endblock %} |