Skip to content

Commit ea6a9d9

Browse files
eworm-dejelly
authored andcommitted
allow todo list name to wrap
We have quite long todo list names, with attribute "nowrap" this looks pretty strange on small screens.
1 parent 16b3ee0 commit ea6a9d9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

templates/devel/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h3>Package Todo Lists</h3>
136136
<tbody>
137137
{% for todo in todos %}
138138
<tr>
139-
<td><a href="{{ todo.get_absolute_url }}"
139+
<td class="wrap"><a href="{{ todo.get_absolute_url }}"
140140
title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
141141
<td>{{ todo.created|date }}</td>
142142
<td>{{ todo.creator.get_full_name }}</td>

templates/todolists/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h2>Package Todo Lists</h2>
3535
<tbody>
3636
{% for list in lists %}
3737
<tr>
38-
<td><a href="{{ list.get_absolute_url }}"
38+
<td class="wrap"><a href="{{ list.get_absolute_url }}"
3939
title="View todo list: {{ list.name }}">{{ list.name }}</a></td>
4040
<td>{{ list.created|date }}</td>
4141
<td>{{ list.creator.get_full_name }}</td>

0 commit comments

Comments
 (0)