Files
pretix_cgo/src/pretix/presale/templates/pretixpresale/index.html
Raphael Michel afd766999c Upgrade to Django 2.1 (#710)
* 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
2018-08-06 12:48:46 +02:00

31 lines
922 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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>