pytask/templates/task/view.html
author nishanth
Mon, 01 Feb 2010 15:00:40 +0530
changeset 18 293692eb8f06
parent 15 c6038cbf8a39
permissions -rw-r--r--
added the functionality to assign a task to one of the claimed users.

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
    <a href="/task/browse/">Browse tasks</a>
    <h3>{{ task.title }}</h3><br />
    <!-- we have to write our own datetime.strftime filter and use in the next line -->
    created by <a href="/user/view/uid={{ task.created_by.id }}">{{ task.created_by.username }}</a> on {{ task.creation_datetime.ctime }}<br />
    Mentors:
    {% for mentor in mentors %}
        <a href="/user/view/uid={{mentor.id}}">{{mentor.username}}|</a>
    {% endfor %}
    {% if is_mentor %}
        <br /><a href="/task/addmentor/tid={{task.id}}">Add another Mentor to this task</a><br />
        edit task goes here and it should contain all those add subs and add deps depending on availability<br />
    {% endif %}
    <hr>
    <br />Description:<br />
    <br />{{ task.desc }}<br />
    <hr>
    status of task is {{task.status}}<br />
    {% if assigned_user %}
        Task has been assigned to <a href="/user/view/uid={{assigned_user.id}}">{{assigned_user.username}}</a><br />
    {% endif %}
    {% if not is_guest %}
        <a href="/task/claim/tid={{task.id}}">View claims</a><br />
    {% endif %}
    
    {% if comments %}
        <hr />
        <br/>comments:<br />
        {% for comment in comments %}
            <br /><a href="/user/view/uid={{comment.created_by.id}}">{{ comment.created_by.username }}</a> at {{ comment.creation_datetime.ctime }} wrote:<br />
        {{ comment.data }}<br />
        {% endfor %}
    {% endif %}

    {% if not is_guest %}
        <br />Add comment:<br />
        <form action="" method="post">
        <!-- we might even want to use forms here -->
        <textarea  name="data"></textarea><br />
        <input type="submit" value="Submit">
        </form>
    {% endif %}
{% endblock %}