Fix bugs affecting multiple projects

This commit is contained in:
Thierry Carrez 2013-07-15 14:15:17 +02:00
parent ca70b67739
commit 12aba9ce09
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<td><span class="badge{{ story.priority|priobadge }}">
{{ story.get_priority_display }}</span></td>
<td>
{% for task in story.task_set.all %}{{ task.project.name }}{% endfor %}
{% for task in story.task_set.all %}{% if not forloop.first %}, {% endif %}{{ task.project.name }}{% endfor %}
</td>
</tr>
{% endfor %}