created a view for view notification and included the url. made changes accordingly in browse notifications
{% extends 'base.html' %}
{% block content %}
{% if not notifications %}
You have no notifications.
{% else %}
Notifications for you: <br />
{% for notification in notifications %}
<a href="/profile/notf/view/nid={{notification.uniq_key}}">
{% if not notification.is_read %} <b> {% endif %}
{{notification.sub}}
{% if not notification.is_read %} </b> {% endif %}</a><br />
{% endfor %}
{% endif %}
{% endblock %}