[hg] galaxy 3757: Clean up annotation display for workflow steps.
details: http://www.bx.psu.edu/hg/galaxy/rev/42de27d4215f changeset: 3757:42de27d4215f user: jeremy goecks <jeremy.goecks@emory.edu> date: Sun May 09 22:37:50 2010 -0400 description: Clean up annotation display for workflow steps. diffstat: templates/workflow/display.mako | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diffs (16 lines): diff -r 8094d8531fb2 -r 42de27d4215f templates/workflow/display.mako --- a/templates/workflow/display.mako Fri May 07 18:25:29 2010 -0400 +++ b/templates/workflow/display.mako Sun May 09 22:37:50 2010 -0400 @@ -108,7 +108,11 @@ </div> %endif </td> - <td class="annotation">${step.annotation}</td> + <td class="annotation"> + %if hasattr( step, "annotation") and step.annotation is not None: + ${step.annotation} + %endif + </td> </tr> %endfor </table>
participants (1)
-
Nate Coraor