]> git.sur5r.net Git - bacula/bacula/blob - gui/bweb/lang/es/tpl/scheduled_job.tpl
ebl release file on sf
[bacula/bacula] / gui / bweb / lang / es / tpl / scheduled_job.tpl
1 <br/>
2  <div class='titlediv'>
3   <h1 class='newstitle'> Próximos Jobs </h1>
4  </div>
5  <div class='bodydiv'>
6     <form action='?' method='GET'>
7      <table id='id<TMPL_VAR ID>'></table>
8      <label>
9      <input type="image" name='action' value='run_job_mod'
10       src='/bweb/R.png' title='Ejecutar Ahora'>  Ejecutar Ahora
11      </label>
12      <label>
13       <input type="image" name='action' value='disable_job'
14        src='/bweb/inflag0.png' title='Desactivar'> Desactivar
15       </label>
16     </form>
17  </div>
18
19 <script type="text/javascript" language="JavaScript">
20
21 var header = new Array("Programado",
22                        "Nivel",
23                        "Tipo",
24                        "Prioridad", 
25                        "Nombre",
26                        "Volumen",
27                        "Selección");
28
29 var data = new Array();
30 var chkbox;
31
32 <TMPL_LOOP list>
33 chkbox = document.createElement('INPUT');
34 chkbox.type  = 'radio';
35 chkbox.name = 'job';
36 chkbox.value = '<TMPL_VAR name>';
37
38 data.push( new Array(
39 "<TMPL_VAR date>",    
40 "<TMPL_VAR level>",
41 "<TMPL_VAR type>",     
42 "<TMPL_VAR priority>",    
43 "<TMPL_VAR name>",      
44 "<TMPL_VAR volume>",
45 chkbox
46  )
47 );
48 </TMPL_LOOP>
49
50 nrsTable.setup(
51 {
52  table_name:     "id<TMPL_VAR ID>",
53  table_header: header,
54  table_data: data,
55  up_icon: up_icon,
56  down_icon: down_icon,
57  prev_icon: prev_icon,
58  next_icon: next_icon,
59  rew_icon:  rew_icon,
60  fwd_icon:  fwd_icon,
61 // natural_compare: true,
62  even_cell_color: even_cell_color,
63  odd_cell_color: odd_cell_color, 
64  header_color: header_color,
65  page_nav: true,
66  rows_per_page: rows_per_page,
67 // disable_sorting: new Array(6),
68  padding: 3
69 }
70 );
71 </script>