 e53124a7cb
			
		
	
	
		e53124a7cb
		
	
	
	
	
		
			
			2.) pages are now being built using fragments: <content page (e.g. agent.html)> |- header.html |- top.html |- navigation.html |- footer.html 3.) the job list is now implemented as a table, using hyperlinks to select a job 4.) hovering over a table row now displays a yellow bar that simplifies navigation inside the table git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1837 fd906abe-77d9-0310-91a1-e0d9ade77398
		
			
				
	
	
		
			89 lines
		
	
	
		
			No EOL
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			No EOL
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 | |
| <!--<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> //-->
 | |
| <html xmlns:nevow="http://nevow.com/ns/nevow/0.1">
 | |
| 
 | |
| <!-- Job Overview Page for loops.agent UI    Version: 0.1 //-->
 | |
| 
 | |
| <nevow:invisible nevow:render="header_fragment" />
 | |
| 
 | |
| 
 | |
|   <body>
 | |
|     <div class="body">
 | |
|         <div nevow:render="top_fragment">
 | |
|         </div>
 | |
| 
 | |
|     <div id="menu">
 | |
| 
 | |
|         <div nevow:render="navigation_fragment">
 | |
|         </div>
 | |
|         <br/>
 | |
|         <br/>
 | |
|         <div class="box">
 | |
|           <h4>User Mode</h4>
 | |
|           <div class="body">
 | |
|               <b>Current Mode: </b><p nevow:render="getActiveUserMode"/>
 | |
|           </div>
 | |
|         </div>
 | |
| 
 | |
|     </div>
 | |
| 
 | |
|     <div id="content">
 | |
|     <div></div>
 | |
|     <div></div>
 | |
| 
 | |
|     <div class="content-1" id="2.body" ondblclick="">
 | |
|         <div class="line-block">
 | |
|             <div class="line"><br /></div>
 | |
|             </div>
 | |
|             <div class="section">
 | |
|             <h3><a id="agent-ui-startpage" name="agent-ui-startpage">Agent Job overview</a></h3>
 | |
| 
 | |
|             <ul class="simple">
 | |
|             <li>Here you will get an overview of the current jobs registered in the agent system</li>
 | |
|             </ul>
 | |
|             </div>
 | |
|             <div class="section">
 | |
|                 <h3><a id="form-overview" name="form-overview">Overview</a></h3>
 | |
|                 <ul class="simple">
 | |
|                 <li><b>Current jobs </b><div nevow:render="data" nevow:data="displayViewForm"/></li>
 | |
|                     <table class="listing">
 | |
|                         <thead>
 | |
|                             <tr>
 | |
|                                 <th>
 | |
|                                     PID
 | |
|                                 </th>
 | |
|                                 <th>
 | |
|                                     State
 | |
|                                 </th>
 | |
|                                 <th>
 | |
|                                     Interval
 | |
|                                 </th>
 | |
|                                 <th>
 | |
|                                     Search Criteria
 | |
|                                 </th>
 | |
|                                 <th>
 | |
|                                     Job Scope
 | |
|                                 </th>
 | |
|                             </tr>
 | |
|                         </thead>
 | |
|                         <tbody>
 | |
|                             <p nevow:render="fillJobTable">
 | |
|                             </p>
 | |
|                         </tbody>
 | |
|                     </table>
 | |
|                 </ul>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <div id="sub-section" define-macro="sub-section">
 | |
|     </div>
 | |
| 
 | |
|     <div nevow:render="footer_fragment">
 | |
|     </div>
 | |
| 
 | |
|     </div>
 | |
| 
 | |
|     </body>
 | |
| 
 | |
| </html> |