project/templates/_menu_user.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 13 Dec 2009 18:28:35 +0530
changeset 73 05e834df29ff
parent 1 fda1c66b25f9
child 96 178b89a3ca4f
permissions -rw-r--r--
Added split schedule for tutorial and sprint.

<div id="menu-user">
    {% if user.is_authenticated %}
        {% if user.get_full_name %}
        <strong>{{ user.get_full_name }} &lt;{{ user.username }}&gt;</strong>
        {% else %}
            <strong>{{ user.username }}</strong>
        {% endif %} |

        <a href="{% url kiwipycon_account %}">My profile</a> |

        {% if user.is_superuser %}
                <a href="/admin/">Administer</a> |
        {% endif %}

        <a href="{% url kiwipycon_logout %}">Logout</a>
    {% else %}
        <a href="{% url kiwipycon_login %}">Login</a>
    {% endif %}
</div>