client
Last change
on this file since f301a50 was
0671644,
checked in by Alex Dehnert <adehnert@…>, 15 years ago
|
Add links to the admin site (Trac: #34)
|
-
Property mode set to
100644
|
File size:
815 bytes
|
Rev | Line | |
---|
[88e897a] | 1 | {% extends "base.html" %} |
---|
| 2 | |
---|
| 3 | {% block title %}Welcome to Remit{% endblock %} |
---|
| 4 | {% block content %} |
---|
| 5 | |
---|
| 6 | <h2>Welcome to Remit</h2> |
---|
| 7 | |
---|
| 8 | <p> |
---|
| 9 | Remit is software that aims to help MIT student group manage their finances. |
---|
| 10 | </p> |
---|
| 11 | |
---|
| 12 | <ul> |
---|
[0f53aae] | 13 | {% if user.is_anonymous %} |
---|
| 14 | <li><a href='{% url login %}'>Login</a></li> |
---|
| 15 | {% endif %} |
---|
[88e897a] | 16 | <li><a href="{% url request_reimbursement %}">Request reimbursement</a></li> |
---|
[485673a] | 17 | <li><a href="{% url list_requests %}">List requests</a></li> |
---|
[ea76b01] | 18 | {% if perms.finance_core.use_reporting %} |
---|
| 19 | <li><a href="{% url reporting %}">Reporting</a></li> |
---|
| 20 | {% endif %} |
---|
[0671644] | 21 | {% if user.is_staff %} |
---|
| 22 | <li><a href='{% url admin:index %}'>Django admin interface</a></li> |
---|
| 23 | {% endif %} |
---|
[0f53aae] | 24 | {% if user.is_authenticated %} |
---|
| 25 | <li><a href='{% url logout %}'>Logout</a></li> |
---|
| 26 | {% endif %} |
---|
[88e897a] | 27 | </ul> |
---|
| 28 | |
---|
| 29 | {% endblock %} |
---|
Note: See
TracBrowser
for help on using the repository browser.