source: branches/1.2/workflow/templates/default/orgchartPrint.tpl @ 1349

Revision 1349, 1.1 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1<html>
2<head>
3</head>
4<body>
5{$header}
6{$css}
7{$javaScripts}
8<div class="invisiblePrint">
9        <h1>Configurar Impressão</h1>
10        <label><input type="checkbox" checked id="employeesVisibility" /> Exibir funcionários</label>
11        <br/>
12        <label><input type="checkbox" checked id="highlightSupervisor" /> Ressaltar titular</label>
13        <br/>
14        <label><input type="checkbox" checked id="orgchartPathVisibility" /> Exibir "caminho completo" da área</label>
15        <br/>
16        <label><input type="checkbox" checked id="orgchartPathIndentation" /> Indentar áreas e funcionários</label>
17        <br/><br/>
18        <button id="printButton">Imprimir</button>
19</div>
20
21{if !empty($organizationName)}
22<h1 class="organizationName">{$organizationName}</h1>
23{/if}
24
25{foreach from=$areasInfo item=area}
26        <div class="area">
27                <h1><span class="orgchartPath">{$area.orgchartPath}</span>{$area.sigla}</h1>
28                <div class="employees">
29                        {foreach from=$area.employees item=employee}
30                        <p class="employee{if $employee.funcionario_id == $area.titular_funcionario_id} supervisor{/if}">{$employee.cn}</p>
31                        {/foreach}
32                </div>
33        </div>
34{/foreach}
35{$footer}
36</body>
37</html>
Note: See TracBrowser for help on using the repository browser.