templates/task/assigncredits.html
author nishanth
Fri, 26 Feb 2010 00:29:04 +0530
changeset 106 3c3ea2a3f92a
parent 96 2881ed1c52b0
child 114 38793914921b
permissions -rw-r--r--
now view request shows a better message if role is MT .

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
        <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task.
        {% if prev_credits %}
            <hr />
            <br/>Previous credits:<br />
            {% for credit in prev_credits %}
                {{credit.points}} pynts were given by <a href="/user/view/uid={{credit.given_by.id}}">{{credit.given_by.username}}</a> to
                <a href="/user/view/uid={{credit.given_to.id}}">{{credit.given_to.username}}</a> at {{credit.given_time.ctime}}<br />
            {% endfor %}
        {% endif %}

        <form action="" method="post">
        {{form.as_p}}
        <input type="submit" value="Submit">
        </form>
{% endblock %}