templates/task/assigncredits.html
author nishanth
Thu, 25 Feb 2010 06:07:55 +0530
changeset 93 1a1e712e60fd
child 96 2881ed1c52b0
permissions -rw-r--r--
finished assign_credits view. hav to integrate it with requests now.

{% extends 'base.html' %}
{% block title %}
    {{task.title}}
{% endblock %}
{% block content %}
        
        {% 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 %}