Files
wireguard_webadmin/templates/app_gateway/caddy_disabled_alert.html

9 lines
499 B
HTML
Raw Normal View History

{% load i18n %}
{% if not caddy_enabled %}
<div class="alert alert-warning alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<h5><i class="icon fas fa-exclamation-triangle"></i> {% trans 'Caddy is not enabled' %}</h5>
{% trans 'The App Gateway and Gatekeeper modules require Caddy and the auth-gateway container to be running. Please start the application using <code>docker-compose-caddy.yml</code>.' %}
</div>
{% endif %}