[Web] ui texts - disabled escaping
Signed-off-by: Kristian Feldsam <feldsam@gmail.com>master
parent
71ecf6e060
commit
7456eeb737
|
@ -65,19 +65,19 @@
|
||||||
<form class="form" data-id="uitexts" role="form" method="post">
|
<form class="form" data-id="uitexts" role="form" method="post">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="uitests_title_name">{{ lang.admin.title_name }}:</label>
|
<label for="uitests_title_name">{{ lang.admin.title_name }}:</label>
|
||||||
<input type="text" class="form-control" id="uitests_title_name" name="title_name" placeholder="mailcow UI" value="{{ ui_texts.title_name }}">
|
<input type="text" class="form-control" id="uitests_title_name" name="title_name" placeholder="mailcow UI" value="{{ ui_texts.title_name|raw }}">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="uitests_main_name">{{ lang.admin.main_name }}:</label>
|
<label for="uitests_main_name">{{ lang.admin.main_name }}:</label>
|
||||||
<input type="text" class="form-control" id="uitests_main_name" name="main_name" placeholder="mailcow UI" value="{{ ui_texts.main_name }}">
|
<input type="text" class="form-control" id="uitests_main_name" name="main_name" placeholder="mailcow UI" value="{{ ui_texts.main_name|raw }}">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="uitests_apps_name">{{ lang.admin.apps_name }}:</label>
|
<label for="uitests_apps_name">{{ lang.admin.apps_name }}:</label>
|
||||||
<input type="text" class="form-control" id="uitests_apps_name" name="apps_name" placeholder="{{ lang.header.apps }}" value="{{ ui_texts.apps_name }}">
|
<input type="text" class="form-control" id="uitests_apps_name" name="apps_name" placeholder="{{ lang.header.apps }}" value="{{ ui_texts.apps_name|raw }}">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="help_text">{{ lang.admin.help_text }}:</label>
|
<label for="help_text">{{ lang.admin.help_text }}:</label>
|
||||||
<textarea class="form-control" id="help_text" name="help_text" rows="7">{{ ui_texts.help_text }}</textarea>
|
<textarea class="form-control" id="help_text" name="help_text" rows="7">{{ ui_texts.help_text|raw }}</textarea>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
||||||
<meta name="theme-color" content="#F5D76E"/>
|
<meta name="theme-color" content="#F5D76E"/>
|
||||||
<meta http-equiv="Referrer-Policy" content="same-origin">
|
<meta http-equiv="Referrer-Policy" content="same-origin">
|
||||||
<title>{{ ui_texts.title_name }}</title>
|
<title>{{ ui_texts.title_name|raw }}</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ css_path }}">
|
<link rel="stylesheet" href="{{ css_path }}">
|
||||||
{% if theme != 'lumen' %}
|
{% if theme != 'lumen' %}
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
<li><a href data-toggle="modal" data-container="sogo-mailcow" data-target="#RestartContainer"><i class="bi bi-arrow-repeat"></i> {{ lang.header.restart_sogo }}</a></li>
|
<li><a href data-toggle="modal" data-container="sogo-mailcow" data-target="#RestartContainer"><i class="bi bi-arrow-repeat"></i> {{ lang.header.restart_sogo }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li class="dropdown">
|
<li class="dropdown">
|
||||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="bi bi-link-45deg"></i> {{ ui_texts.apps_name }} <span class="caret"></span></a>
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="bi bi-link-45deg"></i> {{ ui_texts.apps_name|raw }} <span class="caret"></span></a>
|
||||||
<ul class="dropdown-menu" role="menu">
|
<ul class="dropdown-menu" role="menu">
|
||||||
{% for app in mailcow_apps %}
|
{% for app in mailcow_apps %}
|
||||||
{% if not skip_sogo or not is_uri('SOGo', app.link) %}
|
{% if not skip_sogo or not is_uri('SOGo', app.link) %}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{% if ui_texts.ui_announcement_text and ui_texts.ui_announcement_active %}
|
{% if ui_texts.ui_announcement_text and ui_texts.ui_announcement_active %}
|
||||||
<div class="alert alert-{{ ui_texts.ui_announcement_type }} rot-enc ui-announcement-alert">{{ ui_texts.ui_announcement_text|rot13 }}</div>
|
<div class="alert alert-{{ ui_texts.ui_announcement_type }} rot-enc ui-announcement-alert">{{ ui_texts.ui_announcement_text|rot13 }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<legend>{% if oauth2_request %}{{ lang.oauth2.authorize_app }}{% else %}{{ ui_texts.main_name }}{% endif %}</legend>
|
<legend>{% if oauth2_request %}{{ lang.oauth2.authorize_app }}{% else %}{{ ui_texts.main_name|raw }}{% endif %}</legend>
|
||||||
{% if is_mobileconfig %}
|
{% if is_mobileconfig %}
|
||||||
<div class="alert alert-info">{{ lang.login.mobileconfig_info }}</div>
|
<div class="alert alert-info">{{ lang.login.mobileconfig_info }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div id="fido2-alerts"></div>
|
<div id="fido2-alerts"></div>
|
||||||
{% if not oauth2_request %}
|
{% if not oauth2_request %}
|
||||||
<legend><i class="bi bi-link-45deg"></i> {{ ui_texts.apps_name }}</legend>
|
<legend><i class="bi bi-link-45deg"></i> {{ ui_texts.apps_name|raw }}</legend>
|
||||||
<div class="apps">
|
<div class="apps">
|
||||||
{% for app in mailcow_apps %}
|
{% for app in mailcow_apps %}
|
||||||
{% if not skip_sogo or not is_uri('SOGo', app.link) %}
|
{% if not skip_sogo or not is_uri('SOGo', app.link) %}
|
||||||
|
@ -97,9 +97,9 @@
|
||||||
{% if ui_texts.help_text %}
|
{% if ui_texts.help_text %}
|
||||||
<p>{{ ui_texts.help_text|raw }}</p>
|
<p>{{ ui_texts.help_text|raw }}</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p><span style="border-bottom: 1px dotted #999;">{{ ui_texts.main_name }}</span></p>
|
<p><span style="border-bottom: 1px dotted #999;">{{ ui_texts.main_name|raw }}</span></p>
|
||||||
<p>{{ lang.start.mailcow_panel_detail|raw }}</p>
|
<p>{{ lang.start.mailcow_panel_detail|raw }}</p>
|
||||||
<p><span style="border-bottom: 1px dotted #999;">{{ ui_texts.apps_name }}</span></p>
|
<p><span style="border-bottom: 1px dotted #999;">{{ ui_texts.apps_name|raw }}</span></p>
|
||||||
<p>{{ lang.start.mailcow_apps_detail|raw }}</p>
|
<p>{{ lang.start.mailcow_apps_detail|raw }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue