source: remit/remit_templates/index.html @ 80d1270

client
Last change on this file since 80d1270 was 80d1270, checked in by Alex Dehnert <adehnert@…>, 14 years ago

Add reporting link to homepage (Trac: #14)

  • Property mode set to 100644
File size: 560 bytes
RevLine 
[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>
9Remit is software that aims to help MIT student group manage their finances.
10</p>
11
12<ul>
13    <li><a href="{% url request_reimbursement %}">Request reimbursement</a></li>
[485673a]14    {% if perms.vouchers.can_list %}
15    <li><a href="{% url list_requests %}">List requests</a></li>
16    {% endif %}
[80d1270]17    <li{% ifequal pagename "reporting" %} class='selected'{% endifequal %}><a href="{% url reporting %}">Reporting</a></li>
[88e897a]18</ul>
19
20{% endblock %}
Note: See TracBrowser for help on using the repository browser.