forked from data.coop/membersystem
Mikkel Munch Mortensen
1a66dbff3a
* Django * django-money * pre-commit Also fix a few minor issues: * Front page was broken, as `render_to_response` is no longer in Django, but replaced by `render`. * Base template had a link to a "change e-mail" page that no longer exists. Linking to "change password" instead. At least for now.
50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
{% load static %}
|
||
<html>
|
||
<head>
|
||
<title>{% block head_title %}{% endblock %} – {{ site.name }}</title>
|
||
{% block extra_head %}{% endblock %}
|
||
<link rel="stylesheet" href="{% static '/css/membersystem.css' %}" type="text/css" />
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1>
|
||
<a href="/">{{ site.name }}</a>
|
||
</h1>
|
||
<ul>
|
||
{% if user.is_authenticated %}
|
||
<li><a href="{% url 'users:password_change' %}">Change password</a></li>
|
||
<li><a href="{% url 'users:logout' %}">Sign out</a></li>
|
||
{% else %}
|
||
<li><a href="{% url 'users:login' %}">Sign in</a></li>
|
||
<li><a href="{% url 'users:signup' %}">Sign up</a></li>
|
||
{% endif %}
|
||
</ul>
|
||
</header>
|
||
{% block body %}
|
||
{% if messages %}
|
||
<ul id="messages">
|
||
{% for message in messages %}
|
||
<li>{{message}}</li>
|
||
{% endfor %}
|
||
</ul>
|
||
{% endif %}
|
||
|
||
{% block content %}
|
||
{% endblock %}
|
||
{% endblock %}
|
||
{% block extra_body %}
|
||
{% endblock %}
|
||
<footer>
|
||
<ul>
|
||
<li>
|
||
<a href="https://data.coop">data.coop</a>
|
||
</li>
|
||
<li>
|
||
<a href="https://git.data.coop/data.coop/membersystem">source code</a>
|
||
</li>
|
||
</ul>
|
||
</footer>
|
||
</body>
|
||
</html>
|