~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/messages/inlines/navigation.html

  • Committer: Holger Rapp
  • Date: 2009-03-15 20:19:52 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: sirver@kallisto.local-20090315201952-eaug9ff2ec8qx1au
Fixed a bug with broken notification support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% load i18n %} 
2
2
 
3
 
{% if user.is_authenticated %}
4
3
<div>
5
 
    <table width="100%">
6
 
        <tr>
7
 
            <td width="">&nbsp;
8
 
            </td>
9
 
            <td width="370" align="right" style="table-layout: fixed; background-image: url(/wlmedia/img/background-4F4F4F.png);">
10
 
                <a href="{% url messages_inbox %} ">{% trans "Inbox" %}</a>
11
 
                | <a href="{% url messages_outbox %} ">{% trans "Sent Messages" %}</a>
12
 
                | <a href="{% url messages_compose %} ">{% trans "New Message" %}</a>
13
 
                | <a href="{% url messages_trash %} ">{% trans "Message Trash" %}</a>
14
 
            </td>
15
 
        </tr>
16
 
    </table>
 
4
   &nbsp;
 
5
   <div align="left" style="float: left;">
 
6
       <a href="{% url profile_view %} ">{% trans "Profile" %}</a>
 
7
       | <a href="{% url notification_notices %} ">{% trans "Notifications" %}</a>
 
8
   </div>
 
9
   <div align="right" style="float: right;">
 
10
       <a href="{% url messages_inbox %} ">{% trans "Inbox" %}</a>
 
11
       | <a href="{% url messages_outbox %} ">{% trans "Sent Messages" %}</a>
 
12
       | <a href="{% url messages_compose %} ">{% trans "New Message" %}</a>
 
13
       | <a href="{% url messages_trash %} ">{% trans "Message Trash" %}</a>
 
14
   </div>
17
15
</div>
18
 
{% endif %}
19
16