/templates/workflow/run_complete.mako
https://bitbucket.org/cistrome/cistrome-harvard/ · Mako · 30 lines · 28 code · 2 blank · 0 comment · 1 complexity · 0732ed7bacfe9a666a9905d7fa6d54cf MD5 · raw file
- <%inherit file="/base.mako"/>
- <div class="donemessagelarge">
- Successfully ran workflow "${workflow.name}". The following datasets have been added to the queue:
- %for invocation in invocations:
- <div class="workflow-invocation-complete">
- %if invocation['new_history']:
- <p>These datasets will appear in a new history:
- <a target='galaxy_history' href="${h.url_for( controller='history', action='list', operation="Switch", id=trans.security.encode_id(invocation['new_history'].id), use_panels=False, show_deleted=False )}">
- '${h.to_unicode(invocation['new_history'].name)}'.
- </a></p>
- %endif
- <div style="padding-left: 10px;">
- %for step_outputs in invocation['outputs'].itervalues():
- %for data in step_outputs.itervalues():
- %if not invocation['new_history'] or data.history == invocation['new_history']:
- <p><strong>${data.hid}</strong>: ${data.name}</p>
- %endif
- %endfor
- %endfor
- </div>
- </div>
- %endfor
- </div>
- <script type="text/javascript">
- if ( parent.frames && parent.frames.galaxy_history ) {
- parent.frames.galaxy_history.location.href="${h.url_for( controller='root', action='history' )}";
- }
- </script>