1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
4 | |
---|
5 | <head> |
---|
6 | <link href="${h.url_for('/static/style/base.css')}" rel="stylesheet" type="text/css" /> |
---|
7 | <script> |
---|
8 | if ( parent.frames && parent.frames.galaxy_history ) { |
---|
9 | parent.frames.galaxy_history.location.href="${h.url_for( controller='root', action='history' ) }"; |
---|
10 | } |
---|
11 | </script> |
---|
12 | </head> |
---|
13 | |
---|
14 | <body> |
---|
15 | <div class="donemessage"> |
---|
16 | <p> |
---|
17 | Successfully ran workflow "${workflow.name}", the following datasets have |
---|
18 | been added to the queue. |
---|
19 | </p> |
---|
20 | |
---|
21 | <div style="padding-left: 10px;"> |
---|
22 | %for step_outputs in outputs.itervalues(): |
---|
23 | %for data in step_outputs.itervalues(): |
---|
24 | <p><b>${data.hid}</b>: ${data.name}</p> |
---|
25 | %endfor |
---|
26 | %endfor |
---|
27 | </div> |
---|
28 | </div> |
---|
29 | </body> |
---|
30 | |
---|
31 | </html> |
---|