templates/task/assigncredits.html
author nishanth
Thu, 25 Feb 2010 17:00:18 +0530
changeset 96 2881ed1c52b0
parent 93 1a1e712e60fd
child 114 38793914921b
permissions -rw-r--r--
added events addCredits and assignCredits and modified assign_credits view accordingly.

{% 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 %}