Fixing homepage, filed Bug#673951 for root cause

This commit is contained in:
Austin King 2011-07-25 09:56:46 -07:00
Родитель 9050070329
Коммит 6f6a65e23c
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -2,10 +2,12 @@
<body>
{% block header %}
<a href="{{ url('landing.home') }}">Mozillians</a>
{% if user.is_authenticated() %}
<p>Welcome, {{ user.username }}. <a href="{{ url('logout') }}">Log Out</a></p>
<a href="{{ url('phonebook.profile_uid', user.ldap_user.attrs.uniqueIdentifier[0]) }}">My Profile</a>
{% for uniq_id in user.ldap_user.attrs.uniqueIdentifier %}
<a href="{{ url('phonebook.profile_uid', uniq_id) }}">My Profile</a>
{% endfor %}
<a href="{{ url('phonebook.invite') }}">Invite</a>
{% block search %}
<form action="{{ url('phonebook.search') }}" method="GET">