pytask/templates/task/claim.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 379 ed2dadfc829a
child 431 fcc87a3f0311
permissions -rw-r--r--
Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
354
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
    {% if can_claim %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
    Propose a claim to work on this task.<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
    {% endif %}
356
f88135529c74 claim task works fine now
Nishanth Amuluru <nishanth@fossee.in>
parents: 354
diff changeset
     6
    {% if old_claims %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 379
diff changeset
     7
        List of all the claims for the task <a href="{% url view_task task.id %}">{{task.title}}</a><br />
356
f88135529c74 claim task works fine now
Nishanth Amuluru <nishanth@fossee.in>
parents: 354
diff changeset
     8
        {% for claim in old_claims %}
354
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
            <hr />
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 379
diff changeset
    10
            <a href="{% url view_profile claim.claimed_by.id %}">{{claim.claimed_by.username}}</a>
354
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
            on {{claim.claim_datetime|date:"D d M Y"}} at {{claim.claim_datetime|time:"H:i"}} wrote:<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    12
            {{claim.proposal|linebreaksbr}}<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    13
        {% endfor %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
    {% else %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    15
        {% if task_claimable %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
            There are no claims for this task yet.<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    17
            {% if can_claim %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    18
                Be the first to claim the task.<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    19
            {% endif %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    20
        {% else %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    21
            The task cannot be claimed at this stage.<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    22
        {% endif %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    23
    {% endif %}
357
ec7f2f4256f5 now the creator can select users
Nishanth Amuluru <nishanth@fossee.in>
parents: 356
diff changeset
    24
    {% if old_claims and is_creator %}
ec7f2f4256f5 now the creator can select users
Nishanth Amuluru <nishanth@fossee.in>
parents: 356
diff changeset
    25
    <hr />
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 379
diff changeset
    26
        <a href="{% url select_task task.id %}">Select a user to assign the work</a>
354
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    27
    {% endif %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    28
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    29
    {% if can_claim %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    30
        <hr />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    31
        <form action="" method="post">
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    32
	{% csrf_token %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    33
        {{form.as_p}}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    34
        <input type="submit" value="Submit Claim"><br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    35
        Please note that you can claim only once and so write your proposal carefully.<br />
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    36
        </form>
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    37
    {% endif %}
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    38
124ccd27ed4f Added the required template
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    39
{% endblock %}