You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
419 B

{% for obj in objects %}
<tr>
<td>{{ obj.name|safe }}</td>
<td>{{ obj.begin|date:"Y-m-d H:i" }}</td>
<td>{{ obj.end|date:"Y-m-d H:i" }}</td>
<td>{{ obj.speaker }}</td>
<td>{{ obj.timetable_organiser }}</td>
<td>
<button class="btn btn-danger" value="{{ obj.id }}">
Удалить
</button>
</td>
</tr>
{% endfor %}