diff options
author | Chris Ball <cjb@laptop.org> | 2010-09-06 18:39:35 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2010-09-07 11:00:57 -0400 |
commit | d542ab20d7fbb1c98d8fb7b03da37b6e211987d8 (patch) | |
tree | a38a1307ae7d8df3e6923fa218d1417d709482d5 | |
parent | 8d1acfb3314d9276f3c6d5fa9c64ac93c4052775 (diff) | |
download | bugseverywhere-d542ab20d7fbb1c98d8fb7b03da37b6e211987d8.tar.gz |
cfbe: Remove "target" column from default bug list
As discussed at:
http://void.printf.net/pipermail/be-devel/2010-September/000626.html
-rw-r--r-- | interfaces/web/templates/list.html | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/interfaces/web/templates/list.html b/interfaces/web/templates/list.html index 216b731..65e6fe2 100644 --- a/interfaces/web/templates/list.html +++ b/interfaces/web/templates/list.html @@ -10,7 +10,6 @@ <th>ID</th> <th>Summary</th> <th>Status</th> - <th>Target</th> <th>Assigned To</th> </tr> {% for bug in bugs %} @@ -19,7 +18,6 @@ <td><a href="/bug?{{ urlencode({'id':bug.id.long_user()}) }}"> {{ bug.summary|e|truncate(70) }}</a></td> <td>{{ bug.status }}</td> - <td>{{ bug.target }}</td> <td>{{ bug.assigned|striptags }}</td> </tr> {% endfor %} |