# HG changeset patch
# User nishanth
# Date 1267472124 -19800
# Node ID bfe621e64a16f6847fea87bfcdc30b21d277d48e
# Parent c4cb937b8e7fd5b63bb6b46ff30a72f54c144d7b
modified the look of browse_requests page task_view page and view_request page.
diff -r c4cb937b8e7f -r bfe621e64a16 taskapp/views/task.py
--- a/taskapp/views/task.py Mon Mar 01 15:15:54 2010 +0530
+++ b/taskapp/views/task.py Tue Mar 02 01:05:24 2010 +0530
@@ -6,7 +6,7 @@
from pytask.taskapp.models import User, Task, Comment, Claim, Request, Notification
from pytask.taskapp.utilities.task import getTask
from pytask.taskapp.forms.task import TaskCreateForm, AddMentorForm, AddTaskForm, ChoiceForm, AssignCreditForm, RemoveUserForm
-from pytask.taskapp.events.task import createTask, reqMentor, publishTask, addSubTask, addDep, addClaim, assignTask, updateTask, removeTask, removeUser, assignCredits, completeTask, closeTask
+from pytask.taskapp.events.task import createTask, reqMentor, publishTask, addSubTask, addDep, addClaim, assignTask, updateTask, removeTask, removeUser, assignCredits, completeTask, closeTask, addMentor
from pytask.taskapp.views.user import show_msg
from pytask.taskapp.utilities.user import get_user
diff -r c4cb937b8e7f -r bfe621e64a16 taskapp/views/user.py
--- a/taskapp/views/user.py Mon Mar 01 15:15:54 2010 +0530
+++ b/taskapp/views/user.py Tue Mar 02 01:05:24 2010 +0530
@@ -19,6 +19,14 @@
about = {
"addmentors":"about/addmentors.html",
"mentor":"about/mentor.html",
+ ## "claimtask":
+ ## "edittask": - contains both about up and pub states
+ ## "mentorrights":
+ ## "assigntask":
+ ## "developer":
+ ## "manager":
+ ## "admin":
+ ## "request": - also contains about automatic rejection of requests
}
def show_msg(user, message, redirect_url=None, url_desc=None):
diff -r c4cb937b8e7f -r bfe621e64a16 templates/task/view.html
--- a/templates/task/view.html Mon Mar 01 15:15:54 2010 +0530
+++ b/templates/task/view.html Tue Mar 02 01:05:24 2010 +0530
@@ -43,7 +43,7 @@
Description:
- {{ task.desc }}
+ {{ task.desc|linebreaksbr }}
{% if deps %}
diff -r c4cb937b8e7f -r bfe621e64a16 templates/user/browse_requests.html
--- a/templates/user/browse_requests.html Mon Mar 01 15:15:54 2010 +0530
+++ b/templates/user/browse_requests.html Tue Mar 02 01:05:24 2010 +0530
@@ -1,15 +1,36 @@
{% extends 'base.html' %}
{% block content %}
{% if not reqs %}
- You have no unreplied requests.
+ You have no unreplied requests learn more
{% else %}
+ You have not yet replied to these requests.learn more
{% for req in reqs %}
-
+
+ {% if not req.is_read %}{% endif %}
+
+ {% ifequal req.role "PY" %}
+ Assign of pynts to {{req.receiving_user}} for the task "{{req.task.title|slice:":20"}}"
+ {% endifequal %}
+
+ {% ifequal req.role "MT" %}
+ Request to mentor the task "{{req.task.title|slice:":20"}}"
+ {% endifequal %}
+
+ {% ifequal req.role "DV" %}
+ Request to act as a developer in the website
+ {% endifequal %}
+
+ {% ifequal req.role "MG" %}
+ Request to act as a manager in the website
+ {% endifequal %}
+
+ {% ifequal req.role "AD" %}
+ Request to act as an admin in the website
+ {% endifequal %}
+
+
+ {% if not req.is_read %}{% endif %}
+
{% endfor %}
{% endif %}
{% endblock %}
diff -r c4cb937b8e7f -r bfe621e64a16 templates/user/view_request.html
--- a/templates/user/view_request.html Mon Mar 01 15:15:54 2010 +0530
+++ b/templates/user/view_request.html Tue Mar 02 01:05:24 2010 +0530
@@ -25,24 +25,26 @@
{{req.sent_by.username}} assigned {{req.pynts}} pynts to
{{req.receiving_user.username}} for the task
{{req.task.title}}
- {% endifequal %}
+ {% else %}
- {% ifequal "MT" req.role %}
- {{req.sent_by.username}} requested you to act as a mentor for the task
- {{req.task.title}}
- {% else %}
- You have been requested to act as
- {% ifequal "AD" req.role %}
- an Admin
+ {% ifequal "MT" req.role %}
+ {{req.sent_by.username}} requested you to act as a mentor for the task
+ {{req.task.title}}
{% else %}
- {% ifequal "MG" req.role %}
- a Manager
+ You have been requested to act as
+ {% ifequal "AD" req.role %}
+ an Admin
{% else %}
- a Developer
+ {% ifequal "MG" req.role %}
+ a Manager
+ {% else %}
+ a Developer
+ {% endifequal %}
{% endifequal %}
+ for the website by {{req.sent_by.username}}.
{% endifequal %}
- for the website by {{req.sent_by.username}}.
{% endifequal %}
+
Please accept or reject the request.