Better front page

This commit is contained in:
Gabriel Augendre 2016-06-04 12:49:05 +02:00
parent d7e3f0132f
commit fbfe8edd61
No known key found for this signature in database
GPG key ID: D2B6A5B41FC438B1

View file

@ -3,5 +3,11 @@
{% block title %}Home{% endblock %}
{% block content %}
<h1>Refunds</h1>
<p class="lead">Welcome to my website. I hope you will enjoy your journey here.</p>
<p class="lead">Welcome to my refund app!</p>
{% if not user.is_authenticated %}
<p>You may want to start by <a href="{% url 'auth_login' %}">logging in</a>.</p>
{% else %}
<p>Start by adding a <a href="{% url 'new_payment' %}">new payment</a> or <a href="{% url 'new_refund' %}">refunding</a>
some existing payments!</p>
{% endif %}
{% endblock %}