--- a/templates/user/browse_requests.html Thu Feb 25 19:39:02 2010 +0530
+++ b/templates/user/browse_requests.html Thu Feb 25 19:46:19 2010 +0530
@@ -1,9 +1,11 @@
{% extends 'base.html' %}
{% block content %}
{% for req in reqs %}
- <form><a href="/user/requests/rid={{req.pos}}">{{req.sent_by.username}}|{{req.role}}|
+ <form><a href="/user/requests/rid={{req.pos}}">
+ {% if not req.is_read %}<b>{% endif %}{{req.sent_by.username}}|{{req.role}}|
{% ifequal req.role "PY" %}
{{req.task.title}}
- {% endifequal %}</a><br /></form>
+ {% endifequal %}</a>
+ {% if not req.is_read %}</b>{% endif %}<br /></form>
{% endfor %}
{% endblock %}