mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
14 lines
480 B
HTML
14 lines
480 B
HTML
{%if not is_manager_connected['status']%}
|
|
<div class="alert alert-secondary text-center my-2" role="alert">
|
|
<h1><i class="fas fa-times-circle text-danger"></i> Crawler Disabled</h1>
|
|
<p>
|
|
{%if 'error' in is_manager_connected%}
|
|
<b>{{is_manager_connected['status_code']}}</b>
|
|
<br>
|
|
<b>Error:</b> {{is_manager_connected['error']}}
|
|
{%else%}
|
|
<b>Error:</b> core/Crawler_manager not launched
|
|
{%endif%}
|
|
</p>
|
|
</div>
|
|
{%endif%}
|