templates/user/view_request.html
author nishanth
Sun, 28 Feb 2010 01:15:15 +0530
changeset 133 34187a80d279
parent 107 4903b4973fc8
child 134 3a49a7e23442
permissions -rw-r--r--
added next and previous capabilities to requests and notifications.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
     2
{% block content %}
133
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     3
    {% if newest %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     4
        <a href="/user/requests/rid={{newest.id}}">&lt;&lt;newest</a>
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     5
    {% endif %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     6
    {% if newer %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     7
        <a href="/user/requests/rid={{newer.id}}">&lt;newer</a>
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     8
    {% endif %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
     9
    {% if older %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    10
        <a href="/user/requests/rid={{older.id}}">older&gt;</a>
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    11
    {% endif %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    12
    {% if oldest %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    13
        <a href="/user/requests/rid={{oldest.id}}">oldest&gt;&gt;</a>
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    14
    {% endif %}
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    15
    <br />
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    16
    From:&nbsp; <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a><br />
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    17
    To: 
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    18
    {% for to_user in sent_users %}
133
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    19
        <a href="/user/view/uid={{to_user.id}}">{{to_user.username}}</a>&nbsp;
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    20
    {% endfor %}
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    21
    <br />
133
34187a80d279 added next and previous capabilities to requests and notifications.
nishanth
parents: 107
diff changeset
    22
    sent at {{req.creation_date}}<br />
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    23
    Message: <br />
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    24
    {% ifequal "PY" req.role %}
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    25
        <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a> assigned {{req.pynts}} pynts to 
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    26
        <a href="/user/view/uid={{req.receiving_user.id}}">{{req.receiving_user.username}}</a> for the task
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    27
        <a href="/task/view/tid={{req.task.id}}">{{req.task.title}}</a><br />
106
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    28
    {% endifequal %}    
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    29
    
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    30
    {% ifequal "MT" req.role %}
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    31
        <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a> requested you to act as a mentor for the task
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    32
        <a href="/task/view/tid={{req.task.id}}">{{req.task.title}}</a><br />
107
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    33
    {% else %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    34
        You have been requested to act as 
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    35
        {% ifequal "AD" req.role %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    36
            an Admin
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    37
        {% else %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    38
            {% ifequal "MG" req.role %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    39
                a Manager
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    40
            {% else %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    41
                a Developer
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    42
            {% endifequal %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    43
        {% endifequal %}
4903b4973fc8 completed the process_request part.
nishanth
parents: 106
diff changeset
    44
        for the website by <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a>.<br />
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    45
    {% endifequal %}
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    46
    
106
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    47
    Please accept or reject the request.<br />
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    48
    <form action="yes/" method="post">
106
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    49
        <input value="Accept" type="submit">
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    50
    </form>
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    51
    <form action="no/" method="post">
104
d1bdd5d6c1a6 added the field remarks in request model.
nishanth
parents: 86
diff changeset
    52
        Remarks: <input type="text" name="remarks">
106
3c3ea2a3f92a now view request shows a better message if role is MT .
nishanth
parents: 104
diff changeset
    53
        <input value="Reject" type="submit">
86
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    54
    </form>
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    55
    <a href="/user/requests/">Click here</a> to return to the requests page.
fcbdf372857c modified requests to match the new model.
nishanth
parents: 83
diff changeset
    56
    
83
fd2e1bd7af82 added accept_assign_credits request
nishanth
parents:
diff changeset
    57
{% endblock %}