13 lines
333 B
Twig
13 lines
333 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Monitors — Torsearch{% endblock %}
|
|
{% block h2 %}Monitors{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="p-4">
|
|
<twig:Card title="Monitors">
|
|
<twig:MonitorList :isWidget="false" :perPage="10"></twig:MonitorList>
|
|
</twig:Card>
|
|
</div>
|
|
{% endblock %}
|