pytask/templates/index.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:37:22 +0530
changeset 556 a0e57ca7cf56
parent 522 9ef818f841d5
permissions -rw-r--r--
Style fixes.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
    {% if not user %}
364
2763afa1c2a2 home_page is now in some shape
Nishanth Amuluru <nishanth@fossee.in>
parents: 363
diff changeset
     4
    Checkout the tasks on the left panel for tasks that have been recently created.<br />
2763afa1c2a2 home_page is now in some shape
Nishanth Amuluru <nishanth@fossee.in>
parents: 363
diff changeset
     5
    Checkout the textbooks for textbooks that have been added to the project.<br />
2763afa1c2a2 home_page is now in some shape
Nishanth Amuluru <nishanth@fossee.in>
parents: 363
diff changeset
     6
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
    {% else %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
        Logged in as {{ user.username }} <br /><br />
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
    {% endif %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
522
9ef818f841d5 Disable Task creation and related activities for now.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    11
<!--    {% if can_create_task %}-->
9ef818f841d5 Disable Task creation and related activities for now.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    12
<!--    	<a href="{% url create_textbook %}">Add a new textbook</a><br />-->
9ef818f841d5 Disable Task creation and related activities for now.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    13
<!--        <a href="{% url create_task %}">Create a task</a><br />-->
9ef818f841d5 Disable Task creation and related activities for now.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    14
<!--    <br />-->
9ef818f841d5 Disable Task creation and related activities for now.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
    15
<!--    {% endif %}-->
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
    
367
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    17
    {% if unpublished_tasks %}
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    18
    Tasks created by you that need approval:<ul>
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    19
        {% for a_task in unpublished_tasks %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 367
diff changeset
    20
            <li><a href="{% url view_task a_task.id %}">{{a_task.title}}</a></li>
367
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    21
        {% endfor %}
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    22
        </ul>
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    23
    <br />
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    24
    {% endif %}
13e171f09941 added unpublished tasks to home_page
Nishanth Amuluru <nishanth@fossee.in>
parents: 365
diff changeset
    25
365
32457bce3437 prettified a few pages
Nishanth Amuluru <nishanth@fossee.in>
parents: 364
diff changeset
    26
    {% if reviewing_tasks %}
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    27
    Tasks you are reviewering:<ul>
365
32457bce3437 prettified a few pages
Nishanth Amuluru <nishanth@fossee.in>
parents: 364
diff changeset
    28
        {% for a_task in reviewing_tasks %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 367
diff changeset
    29
            <li><a href="{% url view_task a_task.id %}">{{a_task.title}}</a></li>
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    30
        {% endfor %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    31
        </ul>
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    32
    <br />
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    33
    {% endif %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    34
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    35
    {% if selected_tasks %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    36
    Tasks that have been assigned to you:<ul>
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    37
        {% for a_task in selected_tasks %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 367
diff changeset
    38
            <li><a href="{% url view_task a_task.id %}">{{a_task.title}}</a></li>
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    39
        {% endfor %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    40
        </ul>
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    41
    <br />
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    42
    {% endif %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    43
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    44
    {% if claimed_tasks %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    45
    Tasks claimed but still not assigned to you:<ul>
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    46
        {% for a_task in claimed_tasks %}
417
b37e541bf950 Manipulate all the templates to use {% url %} templatetag instead of hard coded URLs.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 367
diff changeset
    47
            <li><a href="{% url view_task a_task.id %}">{{a_task.title}}</a></li>
363
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    48
        {% endfor %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    49
        </ul>
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    50
    <br />
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    51
    {% endif %}
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    52
9b0812962133 created the home page
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    53
{% endblock %}