source: trunk/workflow/templates/default/orgchartPrint.tpl @ 795

Revision 795, 1.1 KB checked in by viani, 15 years ago (diff)

Ticket #488 - Inclusão do módulo workflow no ramo trunk do repositório Expresso.

  • 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/><br/>
16        <button id="printButton">Imprimir</button>
17</div>
18
19{if !empty($organizationName)}
20<h1 class="organizationName">{$organizationName}</h1>
21{/if}
22
23{foreach from=$areasInfo item=area}
24        <div class="area">
25                <h1><span class="orgchartPath">{$area.orgchartPath}</span>{$area.sigla}</h1>
26                <div class="employees">
27                        <table width="90%">
28                        {foreach from=$area.employees item=employee}
29                        <tr>
30                        <td width="85%"><span class="employee{if $employee.funcionario_id == $area.titular_funcionario_id}supervisor{/if}">{$employee.cn}</span></td>
31                        <td width="15%" align="right">{$employee.telephoneNumber}</td>
32                        </tr>
33                        {/foreach}
34                        </table>
35                </div>
36        </div>
37{/foreach}
38{$footer}
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.