<table id="{{playlist.playlist.public_id}}tb" class="listing" width="100%">
<thead>
<tr>
- <th class="highlight">{% trans "Title" %}</th>
+ <th class="highlight" style="max-width:200px">{% trans "Title" %}</th>
<th>{% trans "Type" %}</th>
- <th>{% trans "Code" %}</th>
+ <th style="max-width:200px">{% trans "Code" %}</th>
<th>{% trans "Recordist" %}</th>
<th>{% trans "Recording period" %}</th>
<th>{% trans "Digitized" %}</th>
<tbody>
{% for resource in playlist.resources %}
<tr {% if not forloop.counter0|divisibleby:"2" %}class="odd"{% endif %}>
- <td>
+ <td style="max-width:200px">
{% if resource.type == "item" and not resource.element == None %}
<a href="{% url "telemeta-item-detail" resource.element.public_id %}">{{ resource.element }}</a>
{% endif %}
{% if resource.element == None %}{% trans "deleted" %}{% endif %}
</td>
<td>{{ resource.type }}</td>
- <td>
+ <td style="max-width:200px">
{{ resource.element.public_id }}
</td>
<td>{{ resource.element.apparent_collector }}</td>