Leave descriptions out of todolist overview tables

With long descriptions the todolist overview table gets unwieldy. The
todo title should suffice for these views, and the description should
only be shown in the todo details page.
This commit is contained in:
Evangelos Foutras 2022-06-28 12:48:08 +03:00 committed by Jelle van der Waa
parent d347ac3e2d
commit 74e24ff4e6
2 changed files with 0 additions and 4 deletions

View File

@ -128,7 +128,6 @@ <h3>Package Todo Lists</h3>
<th>Name</th>
<th>Creation Date</th>
<th>Creator</th>
<th>Description</th>
<th>Package Count</th>
<th>Incomplete Count</th>
<th>Kind</th>
@ -141,7 +140,6 @@ <h3>Package Todo Lists</h3>
title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
<td>{{ todo.created|date }}</td>
<td>{{ todo.creator.get_full_name }}</td>
<td class="wrap">{{ todo.description|urlize|truncatewords:"50" }}</td>
<td>{{ todo.pkg_count }}</td>
<td>{{ todo.incomplete_count }}</td>
<td>{{ todo.kind_str }}</td>

View File

@ -26,7 +26,6 @@ <h2>Package Todo Lists</h2>
<th>Name</th>
<th>Creation Date</th>
<th>Creator</th>
<th>Description</th>
<th>Package Count</th>
<th>Incomplete Count</th>
<th>Kind</th>
@ -40,7 +39,6 @@ <h2>Package Todo Lists</h2>
title="View todo list: {{ list.name }}">{{ list.name }}</a></td>
<td>{{ list.created|date }}</td>
<td>{{ list.creator.get_full_name }}</td>
<td class="wrap">{{ list.description|urlize }}</td>
<td>{{ list.pkg_count }}</td>
<td>{{ list.incomplete_count }}</td>
<td>{{ list.kind_str }}</td>