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