13 lines
434 B
Twig
13 lines
434 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{{ monitor.title }} — Monitors — Torsearch{% endblock %}
|
|
{% block h2 %}Monitors{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="px-4 py-2">
|
|
<twig:Card title="Viewing your monitors for {{ monitor.title }}">
|
|
<twig:MonitorList :parentMonitorId="monitor.id" :isWidget="false" :perPage="10"></twig:MonitorList>
|
|
</twig:Card>
|
|
</div>
|
|
{% endblock %}
|