templates/user/browse_requests.html
author nishanth
Wed, 24 Feb 2010 20:13:20 +0530
changeset 86 fcbdf372857c
parent 83 fd2e1bd7af82
child 102 67de265ca06a
permissions -rw-r--r--
modified requests to match the new model.

{% extends 'base.html' %}
{% block content %}
    {% for req in reqs %}
        <form><a href="/user/requests/rid={{req.pos}}">{{req.sent_by.username}}|{{req.role}}|
        {% ifequal req.role "PY" %}            
            {{req.task.title}}
        {% endifequal %}</a><br /></form>
    {% endfor %}
{% endblock %}