~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to views/layout-page-grid-widgetlist.twig

  • Committer: Dan Garner
  • Date: 2015-03-26 14:08:33 UTC
  • Revision ID: git-v1:70d14044444f8dc5d602b99890d59dea46d9470c
Moved web servable files to web folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% for region in regions %}
2
 
    {{ region.name }} - {{ region.width }} x {{ region.height }} [{{ region.top }},{{ region.left }}]
3
 
 
4
 
    <table class="table table-bordered">
5
 
        <thead>
6
 
            <th>{% trans "Playlist" %}</th>
7
 
            <th>{% trans "Name" %}</th>
8
 
            <th>{% trans "Type" %}</th>
9
 
            <th>{% trans "Duration" %}</th>
10
 
        </thead>
11
 
        <tbody>
12
 
        {% for playlist in region.playlists %}
13
 
            {% for widget in playlist.widgets %}
14
 
                <tr>
15
 
                    <td>{{ playlist.name }}</td>
16
 
                    <td>{{ widget.module.getName() }}</td>
17
 
                    <td>{{ widget.module.getModuleName() }}</td>
18
 
                    <td>{{ widget.calculatedDuration }}</td>
19
 
                </tr>
20
 
            {% endfor %}
21
 
        {% endfor %}
22
 
        </tbody>
23
 
    </table>
24
 
{% endfor %}
 
 
b'\\ No newline at end of file'