OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/views/warning_bar/_host_and_protocol_mismatch...

29 lines
883 B

<div id="pending-migrations-warning" class="warning-bar--item unsupported-browser-warning--pane">
<span class="icon3 icon-warning"></span>
<% if setting_protocol_mismatched? %>
<p>
<strong><%= t 'warning_bar.protocol_mismatch.title' %></strong>
<br/>
<%= t 'warning_bar.protocol_mismatch.text_html',
set_protocol: Setting.protocol,
actual_protocol: request.ssl? ? 'https' : 'http',
setting_path: admin_settings_general_path
%>
</p>
<% end %>
<% if setting_hostname_mismatched? %>
<p>
<strong><%= t 'warning_bar.hostname_mismatch.title' %></strong>
<br/>
<%= t 'warning_bar.hostname_mismatch.text_html',
set_hostname: Setting.host_name,
actual_hostname: request.host,
setting_path: admin_settings_general_path
%>
</p>
<% end %>
</div>