mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
26 lines
575 B
HTML
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>
|