Files
Froxlor/templates/Froxlor/misc/missingextensionhint.html.twig
2023-11-26 22:22:39 +01:00

19 lines
567 B
Twig

{% extends "Froxlor/base.html.twig" %}
{% block content %}
<div class="container my-auto">
<div class="alert alert-warning fade show" role="alert">
<h4 class="alert-heading">
Whoops!
</h4>
<p>It looks like you are missing some of the required php requirements.</p>
<p>Please ensure that the following extension for the currently used php version ({{ phpversion }}) are installed:</p>
<pre>{{ missing_extensions }}</pre>
<hr>
<p class="mt-1 text-center">
<a href="" class="btn btn-primary" title="Reload page">Reload</a>
</p>
</div>
</div>
{% endblock %}