forked from CGM_Public/pretix_original
10 lines
273 B
HTML
10 lines
273 B
HTML
{% extends "pretixcontrol/base.html" %}
|
|
{% load i18n %}
|
|
{% load rich_text %}
|
|
|
|
{% block title %}{% trans "System message" %}{% endblock %}
|
|
{% block content %}
|
|
<h1>{% trans "System message" %}</h1>
|
|
{{ global_settings.banner_message_detail|rich_text }}
|
|
{% endblock %}
|