Rename settings variable

This commit is contained in:
Raphael Michel
2015-02-12 10:37:08 +01:00
parent 6467b84a49
commit f6b4f726e1
2 changed files with 4 additions and 2 deletions

View File

@@ -150,8 +150,9 @@ DEBUG_TOOLBAR_CONFIG = {
# Tixl specific settings # Tixl specific settings
TIXL_INSTANCE_NAME = 'pretix.de' PRETIX_INSTANCE_NAME = 'pretix.de'
DEFAULT_CURRENCY = 'EUR' DEFAULT_CURRENCY = 'EUR'
INTERNAL_IPS = ('127.0.0.1', '::1') INTERNAL_IPS = ('127.0.0.1', '::1')
try: try:

View File

@@ -4,7 +4,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>{% block title %}{% endblock %}{% if url_name != "index" %} :: {% endif %}{{ settings.TIXL_INSTANCE_NAME }}</title> <title>{% block title %}{% endblock %}{% if url_name != "index" %} :: {% endif %}
{{ settings.PRETIX_INSTANCE_NAME }}</title>
{% compress css %} {% compress css %}
<link rel="stylesheet" type="text/less" href="{% static "pretixcontrol/less/main.less" %}" /> <link rel="stylesheet" type="text/less" href="{% static "pretixcontrol/less/main.less" %}" />
{% endcompress %} {% endcompress %}