templates/index.html
author nishanth
Sun, 28 Feb 2010 15:59:47 +0530
changeset 145 0c97a02b9bdb
parent 143 796ff9e279a8
child 152 a65e1ef725dd
permissions -rw-r--r--
now accepting to be a MG deleted pending DV and MG reqs.

{% extends 'base.html' %}
{% block content %}
    {% if is_guest %}
        Welcome Guest<br>
        <a href="/accounts/register/">Register</a>
        <a href="/accounts/login/">Login</a><br /><br />
        Recent Tasks:<br />
        {% for task in task_list %}
            <a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
        {% endfor %}
    {% else %}
        Logged in as {{ user.username }} <br />
    {% endif %}
    
    {% if user.unread_notifications.count %}
        You have {{ user.unread_notifications.count }} <a href='/user/notifications/'>unread</a>
        {% ifnotequal user.unread_notifications.count 1 %}
        notifications
        {% else %}
        notification
        {% endifnotequal %}<br />
    {% endif %}
    
    {% if user.unread_requests.count %}
        You have {{ user.unread_requests.count }}  <a href='/user/requests/'>unreplied</a>
        {% ifnotequal user.unread_requests.count 1 %}
        requests
        {% else %}
        request
        {% endifnotequal %}<br />
    {% endif %}
    
    {% if user.task_claimed_users.count %}
        {{ user.task_claimed_users.count }} <a href='/user/claimed/'>claimed</a>
        {% ifnotequal user.task_claimed_users.count 1 %}
        tasks
        {% else %}
        task
        {% endifnotequal %}<br />
    {% endif %}
    
    {% if user.task_assigned_users.count %}
        You are currently <a href='/user/assigned/'>working</a> on {{ user.task_assigned_users.count }}
        {% ifnotequal user.task_assigned_users.count 1 %}
        tasks
        {% else %}
        task
        {% endifnotequal %}<br />
    {% endif %}
    
    {% if user.task_mentors.count %}
        <a href="/user/mentor/">Mentoring {{ user.task_mentors.count }}
        {% ifnotequal user.task_mentors.count 1 %}
            tasks
        {% else %}
            task
        {% endifnotequal %}</a>
        <br />
    {% endif %}
    
    {% if unpublished_tasks %}
    <br />Unpublished tasks viewable by you:<br />
        {% for a_task in unpublished_tasks %}
            <a href="/task/view/tid={{a_task.id}}">{{a_task.title}}</a>&nbsp;&nbsp;&nbsp;
        {% endfor %}
    {% endif %}
    <br /><br />
    {% if can_create_task %}
        <a href="/task/create/">Create a task</a><br />
    {% endif %}
    {% ifequal user.get_profile.rights "MG" %}
        <a href="/user/make/dv/">Request another user to be a Developer</a><br />
        <a href="/user/make/mg/">Request another user to act as manager</a><br />
    {% endifequal %}
    {% ifequal user.get_profile.rights "AD" %}
        <a href="/user/make/dv/">Request another user to be a Developer</a><br /><br />
        <a href="/user/make/mg/">Request another user to act as a Manager</a><br />
        <a href="/user/make/ad">Request another user to act as an Admin</a><br />
    {% endifequal %}
{% endblock %}