mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
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 style="max-width: 500px;">
|
|
<ul class="list-group my-3">
|
|
<li class="list-group-item bg-dark text-white">Splash Manager Features:</li>
|
|
<li class="list-group-item">Install and run Splash crawlers on another server</li>
|
|
<li class="list-group-item">Handle proxies (Web and tor)</li>
|
|
<li class="list-group-item">Launch/Kill Splash Dockers</li>
|
|
<li class="list-group-item">Restart crawlers on crash</li>
|
|
<li class="list-group-item">
|
|
<div class="d-flex justify-content-center">
|
|
<a class="btn btn-info" href="https://github.com/ail-project/ail-splash-manager" role="button">
|
|
<i class="fab fa-github"></i> Install and Configure AIL-Splash-Manager
|
|
</a>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{%endif%}
|