~widelands-dev/widelands-website/trunk

« back to all changes in this revision

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

  • Committer: Holger Rapp
  • Date: 2009-02-25 16:55:36 UTC
  • Revision ID: sirver@kallisto.local-20090225165536-3abfhjx8qsgtzyru
- Added my hacked version of pybb. Remerging new versions is very difficult at this point :(

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% load i18n %} 
2
 
 
3
 
{% if user.is_authenticated %}
4
 
<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>
17
 
</div>
18
 
{% endif %}
19