templates/task/view.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 05 Jan 2011 23:51:10 +0530
changeset 220 807e4b701a20
parent 219 f04a1ec7a07f
permissions -rw-r--r--
added a submit_report link for each task
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     2
{% block title %}
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     3
    {{task.title}}
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     4
{% endblock %}
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
     5
{% block content %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
     6
    <h3>{{ task.title }}</h3>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
     7
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
     8
    {% if can_edit %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
     9
        <a href="/task/edit/tid={{task.id}}">Edit task</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    10
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    11
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    12
    {% if can_publish %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    13
        <a href="/task/publish/tid={{task.id}}">Publish task</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    14
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    15
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    16
    {% if can_close %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    17
        <a href="/task/close/tid={{task.id}}">Close this task</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    18
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    19
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    20
    {% if can_delete %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    21
        <a href="/task/delete/tid={{task.id}}">Delete task</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    22
    {% endif %}
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
    23
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    24
    <hr />created by <a href="/user/view/uid={{ task.created_by.id }}">{{ task.created_by.username }}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    25
    on {{task.creation_datetime|date:"D d M Y"}} at {{task.creation_datetime|time:"H:i"}}<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    26
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    27
    {% ifequal task.status "UP" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    28
        Task can be viewed by:
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    29
    {% else %}
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    30
        Reviewers:
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    31
    {% endifequal %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    32
    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    33
    {% for reviewer in reviewers %}
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    34
        <a href="/user/view/uid={{reviewer.id}}">{{reviewer.username}}</a>
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    35
    {% endfor %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    36
    
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    37
    {% if can_mod_reviewers %}
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    38
        <a href="/task/addreviewer/tid={{task.id}}">
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    39
        {% ifequal task.status "UP" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    40
            Request others to view/edit the task
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    41
        {% else %}
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
    42
            Add another Reviewer to this task
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    43
        {% endifequal %}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    44
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    45
    <br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    46
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    47
    <hr />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    48
    <b>Description:</b><br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    49
    {{ task.desc|linebreaksbr }}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    50
    <br /><br /><hr />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    51
    {% if task.tags.count %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    52
        Tags: 
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    53
        {% for tag in task.tags %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    54
            {{tag}}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    55
        {% endfor %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    56
        <hr />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    57
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    58
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    59
    {% if deps %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    60
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    61
        <br />The task has following dependencies.<ul>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    62
        {% for dep in deps %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    63
            <li><a href="/task/view/tid={{dep.id}}">{{dep.title}}</a></li>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    64
        {% endfor %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    65
        </ul>
126
e5377fdaf110 added the functionality to close a task.
nishanth
parents: 114
diff changeset
    66
        
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    67
        {% if can_mod_tasks %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    68
            <a href="/task/addtask/tid={{task.id}}">add more dependencies</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    69
            <a href="/task/remtask/tid={{task.id}}">remove an existing dependency</a>
111
c272d4c601cd added the functionality to publish a task.
nishanth
parents: 96
diff changeset
    70
        {% endif %}
167
b61e45074ba1 implemented deleting of a task.
nishanth
parents: 164
diff changeset
    71
        
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    72
    {% else %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    73
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    74
        {% if subs %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    75
            The task has following sub tasks.<ul>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    76
            {% for sub in subs %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    77
                <li><a href="/task/view/tid={{sub.id}}">{{sub.title}}</a></li>
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
    78
            {% endfor %}
187
72d57f59a561 now subtasks and dependencies in view_task page and other task_lists in home page are displayed as bulleted lists.
nishanth
parents: 185
diff changeset
    79
            </ul>
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 77
diff changeset
    80
            
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
    81
            {% if can_mod_tasks %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    82
                <a href="/task/addtask/tid={{task.id}}">add more subtasks</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    83
                <a href="/task/remtask/tid={{task.id}}">remove an existing subtask</a>
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
    84
            {% endif %}
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 77
diff changeset
    85
            
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
    86
        {% else %}
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 77
diff changeset
    87
        
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    88
            {% if can_mod_tasks %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    89
                <a href="/task/addtask/tid={{task.id}}">add a subtask/dependency </a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    90
            {% endif %}
89
1cc03941ed5d added the capability of adding subtasks/dependencies .
nishanth
parents: 77
diff changeset
    91
            
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
    92
        {% endif %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    93
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    94
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    95
    {% ifequal task.status "CD" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    96
        Task has been closed by <a href="/user/view={{closing_notification.sent_from.id}}">{{closing_notification.sent_from.username}}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    97
        on {{closing_notification.sent_date|date:"D d M Y"}} at {{closing_notification.sent_date|time:"H:i"}}<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    98
        <b>Reason: </b>{{closing_notification.remarks}}<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
    99
    {% endifequal %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   100
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   101
    {% ifequal task.status "CM" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   102
        Task has been marked complete by <a href="/user/view={{completed_notification.sent_from.id}}">
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   103
        {{completed_notification.sent_from.username}}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   104
        on {{completed_notification.sent_date|date:"D d M Y"}} at {{completed_notification.sent_date|time:"H:i"}}<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   105
    {% endifequal %}
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   106
        
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   107
    {% ifequal task.status "OP" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   108
        <br />There are no users working on this task.<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   109
    {% endifequal %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   110
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   111
    {% if subs %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   112
        <br />This task cannot be claimed.. It exists only to show all of its sub tasks in one place.<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   113
    {% endif %}
171
8f31ed9817fa now view_task page also shows tags for the task.
nishanth
parents: 167
diff changeset
   114
        
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   115
    {% if assigned_users %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   116
        Users working on this task:
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   117
        {% for user in assigned_users %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   118
            <a href="/user/view/uid={{user.id}}">{{user.username}}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   119
        {% endfor %}
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
   120
        {% if is_reviewer %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   121
            <a href="/task/remuser/tid={{task.id}}">Remove an existing user</a>
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 134
diff changeset
   122
        {% endif %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   123
        <br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   124
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   125
    
219
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   126
    {% if can_assign_pynts %}
f04a1ec7a07f Replaced the word credit with pynt
Nishanth Amuluru <nishanth@fossee.in>
parents: 218
diff changeset
   127
        <a href="/task/assignpynts/tid={{task.id}}">View/Assign pynts</a>
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   128
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   129
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   130
    {% if task_claimable %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   131
        <a href="/task/claim/tid={{task.id}}">
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
   132
        {% if is_reviewer %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   133
            View claims
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   134
        {% else %}
220
807e4b701a20 added a submit_report link for each task
Nishanth Amuluru <nishanth@fossee.in>
parents: 219
diff changeset
   135
        <a href="/task/report/tid={{task.id}}">Submit Work</a>
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   136
            Claim the task
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   137
        {% endif %}</a>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   138
    {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   139
    
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   140
    {% if comments %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   141
        <hr />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   142
        comments:<br /><br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   143
        {% for comment in comments %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   144
            <a href="/user/view/uid={{comment.created_by.id}}">{{ comment.created_by.username }}</a> 
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   145
            on {{ comment.creation_datetime|date:"D d M Y"}} at {{comment.creation_datetime|time:"H:i"}} wrote:<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   146
        {{ comment.data|linebreaksbr }}<br /><br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   147
        {% endfor %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   148
    {% endif %}
66
f670de53402b modified view task template and view to suit new design.
nishanth
parents: 64
diff changeset
   149
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   150
    {% if not is_guest %}
156
7cad1e92713d finalised the view_task page.
nishanth
parents: 134
diff changeset
   151
        <hr />
176
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 171
diff changeset
   152
        {% if error_msg %}
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 171
diff changeset
   153
            {{error_msg}}<br />
13ceb76fd0a3 now empty comments will not be accepted.
nishanth
parents: 171
diff changeset
   154
        {% endif %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   155
        {% ifnotequal task.status "UP" %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   156
            Add comment:<br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   157
            <form action="" method="post">
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   158
            <!-- we might even want to use forms here -->
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   159
            <textarea  name="data"></textarea><br />
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   160
            <input type="submit" value="Submit">
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   161
            </form>
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   162
        {% else %}
218
59107ce0a618 Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents: 191
diff changeset
   163
            {% if is_reviewer %}
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   164
            Add comment:<br />
114
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
   165
                <form action="" method="post">
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
   166
                <!-- we might even want to use forms here -->
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
   167
                <textarea  name="data"></textarea><br />
38793914921b mark task as complete functionality is added.
nishanth
parents: 111
diff changeset
   168
                <input type="submit" value="Submit">
191
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   169
                </form>                
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   170
            {% endif %}
3bfe70742aa8 now requested mentors can see unpublished task but not comment on it.
nishanth
parents: 187
diff changeset
   171
        {% endifnotequal %}
12
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
   172
    {% endif %}
a93eebabfeb1 created forms, views, templates, actions for home_page, browse_task.
nishanth
parents:
diff changeset
   173
{% endblock %}