Files
pretix_original/src/tixlcontrol/templates/tixlcontrol/auth/base.html
2014-09-12 16:24:27 +02:00

26 lines
575 B
HTML

{% load compress %}
{% load i18n %}
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<title>{{ settings.TIXL_INSTANCE_NAME }}</title>
{% compress css %}
<link rel="stylesheet" type="text/less" href="{% static "tixlcontrol/less/auth.less" %}" />
{% endcompress %}
</head>
<body>
<div class="container">
{% block content %}
{% endblock %}
<footer>
{% with "href='http://tixl.de'" as a_attr %}
{% blocktrans trimmed %}
powered by <a {{ a_attr }}>tixl</a>
{% endblocktrans %}
{% endwith %}
</footer>
</div>
</body>
</html>