nicer announcement table

This commit is contained in:
Laura Klünder 2017-12-10 15:26:51 +01:00
parent 18874913e4
commit 58ed105294

View file

@ -16,11 +16,11 @@
{% for announcement in announcements %}
<tr>
<td>{{ announcement.id }}</td>
<td>{{ announcement.text }}</td>
<td style="white-space: normal; min-width: 300px;">{{ announcement.text }}</td>
<td>{{ announcement.author }}</td>
<td>{{ announcement.active }}</td>
<td>{{ announcement.active_until }}</td>
<td><a href="{% url 'control.announcements.detail' announcement=user.pk %}">{% trans 'Edit' %}</a></td>
<td class="button-cell"><a href="{% url 'control.announcements.detail' announcement=user.pk %}">{% trans 'Edit' %}</a></td>
</tr>
{% endfor %}
</table>