equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block content %} |
2 {% block content %} |
3 {% for req in reqs %} |
3 {% if not reqs %} |
4 <form><a href="/user/requests/rid={{req.pos}}"> |
4 You have no unreplied requests. |
5 {% if not req.is_read %}<b>{% endif %}{{req.sent_by.username}}|{{req.role}}| |
5 {% else %} |
6 {% ifequal req.role "PY" %} |
6 {% for req in reqs %} |
7 {{req.task.title}} |
7 <form><a href="/user/requests/rid={{req.pos}}"> |
8 {% endifequal %}</a> |
8 {% if not req.is_read %}<b>{% endif %}{{req.sent_by.username}}|{{req.role}}| |
9 {% if not req.is_read %}</b>{% endif %}<br /></form> |
9 {% ifequal req.role "PY" %} |
10 {% endfor %} |
10 {{req.task.title}} |
|
11 {% endifequal %}</a> |
|
12 {% if not req.is_read %}</b>{% endif %}<br /></form> |
|
13 {% endfor %} |
|
14 {% endif %} |
11 {% endblock %} |
15 {% endblock %} |