pytask/templates/task/view.html
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 14:57:16 +0530
changeset 143 da4c6b1cec7d
parent 141 ed2dadfc829a
child 144 daca865314e7
permissions -rw-r--r--
add reviewer works now

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    <h3>{{ task.title }}</h3>

    {% if can_edit %}
        <a href="/task/edit/tid={{task.uniq_key}}">Edit task</a>
    {% endif %}
    
    {% if can_approve %}
        <a href="/task/approve/tid={{task.uniq_key}}">Approve task</a>
    {% endif %}
    
    {% if can_close %}
        <a href="/task/close/tid={{task.uniq_key}}">Close task</a>
    {% endif %}
    
<!--
    {% if can_delete %}
        <a href="/task/delete/tid={{task.uniq_key}}">Delete task</a>
    {% endif %}
    -->

    <hr />created by <a href="/profile/user/view/uid={{ task.created_by.id }}">{{ task.created_by.username }}</a>
    on {{task.creation_datetime|date:"D d M Y"}} at {{task.creation_datetime|time:"H:i"}}<br />
    
    {% if reviewers %}
		Reviewers:
	    {% for reviewer in reviewers %}
		<a href="/profile/user/view/uid={{reviewer.id}}">{{reviewer.username}}</a>
	    {% endfor %}
    {% endif %}

    
    {% if can_mod_reviewers %}
        <a href="/task/addreviewer/tid={{task.uniq_key}}">
		Add a Reviewer to this task</a>
    {% endif %}
    <br />
    
    <hr />
    <b>Description:</b><br />
    {{ task.desc|linebreaksbr }}
    <br /><br /><hr />
    {% if task.tags.count %}
        Tags: 
        {% for tag in task.tags %}
            {{tag}}
        {% endfor %}
        <hr />
    {% endif %}

    
    <!--
    {% ifequal task.status "CD" %}
        Task has been closed by <a href="/profile/user/view={{closing_notification.sent_from.id}}">{{closing_notification.sent_from.username}}</a>
        on {{closing_notification.sent_date|date:"D d M Y"}} at {{closing_notification.sent_date|time:"H:i"}}<br />
        <b>Reason: </b>{{closing_notification.remarks}}<br />
    {% endifequal %}
    
    {% ifequal task.status "CM" %}
        Task has been marked complete by <a href="/profile/user/view={{completed_notification.sent_from.id}}">
        {{completed_notification.sent_from.username}}</a>
        on {{completed_notification.sent_date|date:"D d M Y"}} at {{completed_notification.sent_date|time:"H:i"}}<br />
    {% endifequal %}
        
    {% ifequal task.status "OP" %}
        <br />There are no users working on this task.<br />
    {% endifequal %}
    
    {% if subs %}
        <br />This task cannot be claimed.. It exists only to show all of its sub tasks in one place.<br />
    {% endif %}
    -->
        
    {% if selected_users %}
        Users working on this task:
        {% for user in selected_users %}
            <a href="/profile/user/view/uid={{user.id}}">{{user.username}}</a>
        {% endfor %}
        <br />
    {% endif %}
    
    {% if task_claimable %}
	<a href="/task/claim/tid={{task.uniq_key}}">View claims</a>
    {% endif %}

    {% if can_assign_pynts %}
        <a href="/task/assignpynts/tid={{task.uniq_key}}">Request assign pynts and mark the task as complete</a>
    {% endif %}
    
    {% if is_selected %}
        <a href="/task/report/tid={{task.uniq_key}}">Submit Work</a>
    {% endif %}
    
        <hr />
    {% if comments %}
        comments:<br /><br />
        {% for comment in comments %}
            <a href="/profile/user/view/uid={{comment.commented_by.id}}">{{ comment.commented_by.username }}</a> 
            on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:<br />
        {{ comment.data|linebreaksbr }}<br />
        {% endfor %}
    {% endif %}
    <hr />

    {% if can_comment %}
    Add comment:<br />
	<form action="" method="post">
	    {% csrf_token %}
	    {{form.as_p}}
	<input type="submit" value="Submit">
	</form>                
    {% endif %}

{% endblock %}