<%@ taglib uri="/WEB-INF/corepatternstaglibrary.tld" prefix="corepatterns" %>
<html>
<head><title>Lista pracownikw</title></head>
<body>

<corepatterns:employeeAdapter />

<h3><center>lista pracownikw dziau 
<corepatterns:department attribute="id"/> 
- Zastosowanie strategii wasnych znacznikw pomocniczych </h3>

<table border="1" >
  <tr>
    <th> Imi </th>
    <th> Nazwisko </th>
    <th> Zajcie </th>
    <th> Identyfikator </th>
    <th> Potrcenia podatkowe </th>
    <th> Wydajno </th>
    <th> Zarobki roczne </th>
  </tr>
  <corepatterns:employeelist id="employeelist_key">
  <tr>
    <td><corepatterns:employee attribute="FirstName"/></td>
    <td><corepatterns:employee attribute="LastName"/></td> 
    <td><corepatterns:employee attribute="Designation"/> </td>
    <td><corepatterns:employee attribute="Id"/></td> 
    <td><corepatterns:employee attribute="NoOfDeductibles"/></td>
    <td><corepatterns:employee attribute="PerformanceRemarks"/></td>
    <td><corepatterns:employee attribute="YearlySalary"/></td>
    <td>
  </tr>
  </corepatterns:employeelist>
</table>

</body>
</html>