-<h2>Wszystkie utwory:</h2>
-<table class="object-list" cellspacing="0">
- <tr><th>Lp.</th><th>Nazwa utworu</th><th>Wersje</th></tr>
- <tr><td colspan="3" class="page-navigation">
- {% if files.has_previous %}
- <span class="prev-page-marker">
- <a href="?page={{ files.previous_page_number }}">Poprzednia</a>
- </span>
- {% endif %}
-
- <span>Strona {{files.number}} z {{files.paginator.num_pages}}</span>
-
- {% if files.has_next %}
- <span class="next-page-marker">
- <a href="?page={{ files.next_page_number }}">Następna</a>
- </span>
- {% endif %}
- </td>
- </tr>
- {% for file in files.object_list %}
- <tr>
- <td>{{forloop.counter0|add:files.start_index}}.</td>
- <td><a href="{% url editor_view file %}">{{ file }}</a></td>
- <td> </td>
- </tr>
- {% endfor %}
-</table>
-
-