pytask/templates/task/approved_task.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 15 Jan 2011 21:21:49 +0530
changeset 417 b37e541bf950
parent 374 cdd8026ee60e
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:
374
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 374
diff changeset
     3
The task <a href="{% url view_task task.id %}">{{task.title}}</a> has been approved.<br />
374
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
The task will be public. Now users can claim the task and work on it.
cdd8026ee60e task approval is fine now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{% endblock %}