| 0 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 
|  | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 
|  | 3 <html xmlns="http://www.w3.org/1999/xhtml"> | 
|  | 4   <head> | 
|  | 5     <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> | 
|  | 6     <link rel="stylesheet" href="/static/style/base.css" type="text/css" /> | 
|  | 7     <title>${tool.title}</title> | 
|  | 8   </head> | 
|  | 9   <body> | 
|  | 10     <div class="document"> | 
|  | 11       Output completed: $tool.timestamp | 
|  | 12       <p/> | 
|  | 13       #if $tool.outputs | 
|  | 14       <div id="gd_outputs"> | 
|  | 15         Outputs | 
|  | 16         <ul> | 
|  | 17           #for output in $tool.outputs | 
|  | 18             <li>${output.display()}</li> | 
|  | 19           #end for | 
|  | 20         </ul> | 
|  | 21       </div> | 
|  | 22       #end if | 
|  | 23       #if $tool.inputs | 
|  | 24       <div id="gd_inputs"> | 
|  | 25         Inputs | 
|  | 26         <ul> | 
|  | 27           #for input in $tool.inputs | 
|  | 28             <li>${input.display()}</li> | 
|  | 29           #end for | 
|  | 30         </ul> | 
|  | 31       </div> | 
|  | 32       #end if | 
|  | 33       #if $tool.misc | 
|  | 34       <div id="gd_misc"> | 
|  | 35         $tool.misc.display() | 
|  | 36       </div> | 
|  | 37       #end if | 
|  | 38     </div> | 
|  | 39   </body> | 
|  | 40 </html> |