22 lines
684 B
Twig
22 lines
684 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Monitors — Torsearch{% endblock %}
|
|
{% block h2 %}Monitors{% endblock %}
|
|
|
|
{% block action_buttons %}
|
|
<twig:ActionButton action="monitorDispatch" text="Run Monitors" />
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="px-4 py-2">
|
|
<twig:Card title="Active Monitors">
|
|
<twig:MonitorList :type="'active'" :isWidget="false" :perPage="10"></twig:MonitorList>
|
|
</twig:Card>
|
|
</div>
|
|
<div class="px-4 py-2">
|
|
<twig:Card title="Complete Monitors">
|
|
<twig:MonitorList :type="'complete'" :isWidget="false" :perPage="10"></twig:MonitorList>
|
|
</twig:Card>
|
|
</div>
|
|
{% endblock %}
|