mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
30 lines
956 B
HTML
30 lines
956 B
HTML
{% load compress %}
|
|
{% load i18n %}
|
|
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ settings.PRETIX_INSTANCE_NAME }}</title>
|
|
{% compress css %}
|
|
<link rel="stylesheet" type="text/x-scss" href="{% static "pretixpresale/scss/waiting.scss" %}"/>
|
|
{% endcompress %}
|
|
{% compress js %}
|
|
<script type="text/javascript" src="{% static "jquery/js/jquery-2.1.1.min.js" %}"></script>
|
|
<script type="text/javascript" src="{% static "pretixbase/js/ajaxpending.js" %}"></script>
|
|
{% endcompress %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="refresh" content="1">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<i class="fa fa-cog big-rotating-icon"></i>
|
|
|
|
<h1>{% trans "We are processing your request …" %}</h1>
|
|
|
|
<p>
|
|
{% trans "If this takes longer than a few minutes, please contact us." %}
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|