forked from CGM_Public/pretix_original
* Upgrade to Django 2.0 * more models * i18n foo * Update setup.py * Fix Sentry exception PRETIXEU-JC * Enforce slug uniqueness * Import sorting * Upgrade to Django 2.1 * Travis config * Try to fix PostgreSQL failure * Smaller test matrix * staticfiles→static * Include request in all authenticate() calls
31 lines
922 B
HTML
31 lines
922 B
HTML
{% load i18n %}
|
||
{% load compress %}
|
||
{% load static %}
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<title>{{ settings.PRETIX_INSTANCE_NAME }}</title>
|
||
{% compress css %}
|
||
<link rel="stylesheet" type="text/x-scss" href="{% static "pretixpresale/scss/index.scss" %}"/>
|
||
{% endcompress %}
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<img src="{% static "pretixbase/img/pretix-logo.svg" %}" class="logo"/>
|
||
|
||
<h1>{% trans "Hello!" %}</h1>
|
||
<p>
|
||
{% trans "There is nothing to see here yet." %}
|
||
</p>
|
||
<p>
|
||
{% with "href='http://pretix.eu'" as a_attr %}
|
||
{% blocktrans trimmed %}
|
||
<a {{ a_attr }}>pretix – your free and open source ticket sales software</a>.
|
||
{% endblocktrans %}
|
||
{% endwith %}
|
||
</p>
|
||
</div>
|
||
</body>
|
||
</html>
|