Don't show an empty branch field in the commit view

It's a little hack for issue 629, but don't resolve it.
This commit is contained in:
William MARTIN 2011-03-09 22:09:32 +01:00
parent 027886737d
commit 0b3ce03036

View File

@ -9,9 +9,9 @@
<tr> <tr>
<th><strong>{trans 'Author:'}</strong></th><td>{showuser $rcommit.get_author(), $request, $cobject.author}</td> <th><strong>{trans 'Author:'}</strong></th><td>{showuser $rcommit.get_author(), $request, $cobject.author}</td>
</tr> </tr>
<tr> {if $cobject.branch}<tr>
<th><strong>{trans 'Branch:'}</strong></th><td>{$cobject.branch}</td> <th><strong>{trans 'Branch:'}</strong></th><td>{$cobject.branch}</td>
</tr> </tr>{/if}
<tr> <tr>
<th><strong>{trans 'Commit:'}</strong></th><td class="mono"><a href="{url 'IDF_Views_Source::treeBase', array($project.shortname, $commit)}" title="{trans 'View corresponding source tree'}">{$cobject.commit}</a></td> <th><strong>{trans 'Commit:'}</strong></th><td class="mono"><a href="{url 'IDF_Views_Source::treeBase', array($project.shortname, $commit)}" title="{trans 'View corresponding source tree'}">{$cobject.commit}</a></td>
</tr> </tr>