* Add some stuff in the base template, there is now a menu and a footer.
--- /dev/null
+.LeftBar {
+ border:solid black;
+ float:left;
+ width:200px;
+ margin-right: 10px;
+}
+
+.Content {
+ float:left;
+ border: solid black;
+ width: 900px;
+ padding: 10px;
+}
+
+.Clear {
+ clear: both;
+}
+
+.Footer {
+ border: solid black;
+ padding-left: 10px;
+ margin-top:10px;
+}
+{% load i18n %}
<html>
<head>
+<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{{ STATIC_URL_PREFIX }}/base/css/base.css{% endblock %}"/>
</head>
<body>
+<div class="Center">
+<div class="LeftBar">
+<ul>
+ <li><a href="/influences/">Home</a></li>
+ <li><a href="/accounts/logout/">Logout</a></li>
+</ul>
+</div>
+<div class="Content">
{% block content %}
{% endblock %}
+</div>
+</div>
+<!-- Dummy class, margins with regard to floats don't work. -->
+<div class="Clear"></div>
+<div class="Footer">
+{% if user.is_authenticated %}
+ <p>{% blocktrans with user.username as username %}You are currently logged in as {{ username }}{% endblocktrans %}
+ -- <a href="../logout/">{% trans "Logout" %}</a></p>
+{% endif %}
+</div>
+
</body>
</html>