From 2fdc3b3fa991a219122d404be058f0102b48ccac Mon Sep 17 00:00:00 2001 From: nishanth Date: Thu, 25 Feb 2010 19:46:19 +0530 Subject: now unread requests appear in bold. --- templates/user/browse_requests.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/user/browse_requests.html b/templates/user/browse_requests.html index 1c561a3..35432e0 100644 --- a/templates/user/browse_requests.html +++ b/templates/user/browse_requests.html @@ -1,9 +1,11 @@ {% extends 'base.html' %} {% block content %} {% for req in reqs %} -
{{req.sent_by.username}}|{{req.role}}| + + {% if not req.is_read %}{% endif %}{{req.sent_by.username}}|{{req.role}}| {% ifequal req.role "PY" %} {{req.task.title}} - {% endifequal %}
+ {% endifequal %} + {% if not req.is_read %}
{% endif %}
{% endfor %} {% endblock %} -- cgit