blob: 58c152656c51e9985e20ddc68ef96fbc87967a25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{% extends 'base.html' %}
{% block content %}
{% if is_guest %}
Welcome Guest<br>
<a href="/accounts/register/">Register</a>
<a href="/accounts/login/">Login</a><br /><br />
Recent Tasks:<br />
{% for task in task_list %}
<a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
{% endfor %}
{% else %}
Logged in as {{ user.username }} <br />
{% endif %}
{% if notifications.count %}
You have {{ notifications.count }} <a href='/user/notifications/'>unread</a>
{% ifnotequal notifications.count 1 %}
notifications
{% else %}
notification
{% endifnotequal %}<br />
{% endif %}
{% if requests.count %}
You have {{ requests.count }} <a href='/user/requests/'>unreplied</a>
{% ifnotequal requests.count 1 %}
requests
{% else %}
request
{% endifnotequal %}<br />
{% endif %}
{% if user.task_claimed_users.count %}
{{ user.task_claimed_users.count }} <a href='/user/claimed/'>claimed</a>
{% ifnotequal user.task_claimed_users.count 1 %}
tasks
{% else %}
task
{% endifnotequal %}<br />
{% endif %}
{% if user.task_assigned_users.count %}
You are currently <a href='/user/assigned/'>working</a> on {{ user.task_assigned_users.count }}
{% ifnotequal user.task_assigned_users.count 1 %}
tasks
{% else %}
task
{% endifnotequal %}<br />
{% endif %}
{% if user.task_mentors.count %}
<a href="/user/mentor/">Mentoring {{ user.task_mentors.count }}
{% ifnotequal user.task_mentors.count 1 %}
tasks
{% else %}
task
{% endifnotequal %}</a>
<br />
{% endif %}
{% if unpublished_tasks %}
<br />Unpublished tasks viewable by you:<br />
{% for a_task in unpublished_tasks %}
<a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>
{% endfor %}
{% endif %}
<br /><br />
{% if can_create_task %}
<a href="/task/create/">Create a task</a><br />
{% endif %}
{% ifequal user.get_profile.rights "MG" %}
<a href="/user/make/dv/">Request another to be a Developer</a>
<a href="/user/make/mg/">Request another user to act as manager</a><br />
{% endifequal %}
{% ifequal user.get_profile.rights "AD" %}
<a href="/user/make/dv/">Request another to be a Developer</a><br />
<a href="/user/make/mg/">Request another user to act as a Manager</a><br />
<a href="/user/make/ad">Request another user to act as an Admin</a><br />
{% endifequal %}
{% endblock %}
|