From: Chris Ball Date: Wed, 23 Jun 2010 00:05:51 +0000 (-0400) Subject: cfbe: API: bugdir.bug_shortname(bug) -> bug.id.user() X-Git-Tag: 1.0.0~55^2~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=60fd763f11eb35c67a0ac0ceb2b7fdfb61c70eab;p=be.git cfbe: API: bugdir.bug_shortname(bug) -> bug.id.user() FIXME: More instances here. --- diff --git a/interfaces/web/templates/list.html b/interfaces/web/templates/list.html index 1d409f7..83007d3 100644 --- a/interfaces/web/templates/list.html +++ b/interfaces/web/templates/list.html @@ -15,8 +15,8 @@ {% for bug in bugs %} - {{ bd.bug_shortname(bug) }} - + {{ bug.id.user() }} + {{ bug.summary|e|truncate(70) }} {{ bug.status }} {{ bug.target }} @@ -24,4 +24,4 @@ {% endfor %} -{% endblock %} \ No newline at end of file +{% endblock %}