client
Last change
on this file since a875cb6 was
ed4ccc7,
checked in by Alex Dehnert <adehnert@…>, 15 years ago
|
Add basic reporting (Trac #3)
|
-
Property mode set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[32e360b] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
| 2 | |
---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
| 4 | <head> |
---|
| 5 | <title>{% block title %}TITLE{% endblock %}</title> |
---|
| 6 | |
---|
[5cbf234] | 7 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/style.css" /> |
---|
| 8 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/default.css" /> |
---|
[32e360b] | 9 | |
---|
| 10 | </head> |
---|
| 11 | <body> |
---|
[3a0c51b] | 12 | <ul class='tab-navigation'> |
---|
| 13 | <li{% ifequal pagename "homepage" %} class='selected'{% endifequal %}><a href="{% url homepage %}">Home</a></li> |
---|
| 14 | <li{% ifequal pagename "request_reimbursement" %} class='selected'{% endifequal %}><a href="{% url request_reimbursement %}">Request reimbursement</a></li> |
---|
| 15 | {% if perms.vouchers.can_list %} |
---|
| 16 | <li{% ifequal pagename "list_requests" %} class='selected'{% endifequal %}><a href="{% url list_requests %}">List requests</a></li> |
---|
| 17 | {% endif %} |
---|
[ed4ccc7] | 18 | <li{% ifequal pagename "reporting" %} class='selected'{% endifequal %}><a href="{% url reporting %}">Reporting</a></li> |
---|
[3a0c51b] | 19 | </ul> |
---|
| 20 | <div id='content'> |
---|
[32e360b] | 21 | {% block content %}{% endblock %} |
---|
[3a0c51b] | 22 | </div> |
---|
[32e360b] | 23 | </body> |
---|
| 24 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.