~dhis2-academy/dhis2-academy/process-management

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-taskmanager/src/main/webapp/dhis-web-maintenance-taskmanager/getQueuedTasks.vm

  • Committer: Daniel Grøtting
  • Date: 2010-12-03 21:20:52 UTC
  • Revision ID: daniegro@ifi.uio.no-20101203212052-1vo3lv394j0cyz1y
Added running, queued, finished in index

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#if($numQueued > 0)
 
2
<h4>$i18n.getString("queued_tasks") ($numQueued):</h4>
 
3
<table style="text-align: center">
 
4
<tr><th>$i18n.getString("process_type")</th><th>$i18n.getString("process_id")</th><th>$i18n.getString("status")</th></tr>
 
5
#foreach( $process in $queuedProcesses )
 
6
<tr>
 
7
        <td>$process.type</td>
 
8
        <td>$process.id</td>
 
9
        <td>$i18n.getString( $process.state.status )</td>
 
10
</tr>
 
11
#end
 
12
</table>
 
13
#end
 
 
b'\\ No newline at end of file'