<div class="div_table">
<table>
<tbody>
{% for getLecture in getLectures%}
<tr>
<td>1</td>
<td>
<a href="{{ getLecture.pdf.url }}" target="_blank"> {{ getLecture.title }} </a>
</td>
<td>
<a href="{% url 'main:problemlist' %}">Задачи по лекции</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>