1
{% for region in regions %}
2
{{ region.name }} - {{ region.width }} x {{ region.height }} [{{ region.top }},{{ region.left }}]
4
<table class="table table-bordered">
6
<th>{% trans "Playlist" %}</th>
7
<th>{% trans "Name" %}</th>
8
<th>{% trans "Type" %}</th>
9
<th>{% trans "Duration" %}</th>
12
{% for playlist in region.playlists %}
13
{% for widget in playlist.widgets %}
15
<td>{{ playlist.name }}</td>
16
<td>{{ widget.module.getName() }}</td>
17
<td>{{ widget.module.getModuleName() }}</td>
18
<td>{{ widget.calculatedDuration }}</td>
b'\\ No newline at end of file'