Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions views/deliveryEmployeeList.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ <h1>Employee</h1>
<tr>
<th>Delivery ID</th>
<th>Delivery Name</th>
<th>Delivery Salary</th>
<th>Delivery Bank No</th>
<th>Delivery nin</th>
</tr>
{% for employee in deliveryEmployee | sort(attribute='id') %}
<tr>
<td>{{ employee.id }}</td>
<td>{{ employee.name}}</td>
<td>{{ employee.salary}}</td>
<td>{{ employee.bankAccountNumber}}</td>
<td>{{ employee.nin}}</td>
</tr>
{% endfor %}
</table>
Expand Down
6 changes: 6 additions & 0 deletions views/salesEmployeeList.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ <h1>Employee</h1>
<tr>
<th>Employee ID</th>
<th>Employee Name</th>
<th>Employee Salary</th>
<th>Employee Bank No</th>
<th>Employee nin</th>
</tr>
{% for employee in salesEmployee | sort(attribute='id') %}
<tr>
<td>{{ employee.id }}</td>
<td>{{ employee.name}}</td>
<td>{{ employee.salary}}</td>
<td>{{ employee.bankAccountNumber}}</td>
<td>{{ employee.nin}}</td>
</tr>
{% endfor %}
</table>
Expand Down