Add footer to auth templates

This commit is contained in:
Raphael Michel
2014-09-11 12:23:10 +02:00
parent cc6d624f57
commit 8ae7027ccb
2 changed files with 17 additions and 2 deletions

View File

@@ -4,6 +4,12 @@ body {
background: #eee; background: #eee;
} }
footer {
text-align: center;
padding: 10px 0;
font-size: 11px;
}
.form-signin { .form-signin {
.well; .well;

View File

@@ -1,4 +1,5 @@
{% load compress %} {% load compress %}
{% load i18n %}
{% load staticfiles %} {% load staticfiles %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
@@ -10,7 +11,15 @@
</head> </head>
<body> <body>
<div class="container"> <div class="container">
{% block content %} {% block content %}
{% endblock %} {% endblock %}
<footer>
{% with "href='http://tixl.de'" as a_attr %}
{% blocktrans trimmed %}
powered by <a {{ a_attr }}>tixl</a>
{% endblocktrans %}
{% endwith %}
</footer>
</div>
</body> </body>
</html> </html>