1 {% extends
"base.html" %}
7 <h1>{% trans
"Device List" %}
</h1>
11 <th>{% trans
"Name" %}
</th>
12 <th>{% trans
"Type" %}
</th>
13 <th>{% trans
"UID" %}
</th>
15 {% for d in devices %}
16 {% ifchanged d.sync_group %}
19 {% if not d.sync_group %}{% trans
"Not synchronized" %}
20 {% else %}{% trans
"Synchronized" %}
26 <td><a href=
"/device/{{ d.id }}">{{ d|device_icon }}{{ d.name|striptags }}
</a></td>
27 <td>{{ d|device_type }}
</td>
28 <td>{{ d.uid|striptags }}
</td>
33 <div class=
"info"><strong>{% trans
"How do I add a new device?" %}
</strong> {% trans
"Just upload your subscriptions with a new device using gPodder, and it will automatically show up in this list." %}
</div>