mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-24 06:57:56 +01:00
24 lines
617 B
Plaintext
24 lines
617 B
Plaintext
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<title>Employees</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table border=1>
|
||
|
<thead><tr>
|
||
|
<th>ID</th>
|
||
|
<th>Name</th>
|
||
|
<th>Email</th>
|
||
|
</tr></thead>
|
||
|
<%--<c:forEach var="employee" items="${employees.employees}">--%>
|
||
|
<%--<tr>--%>
|
||
|
<%--<td>${employee.id}</td>--%>
|
||
|
<%--<td>${employee.name}</td>--%>
|
||
|
<%--<td>${employee.email}</td>--%>
|
||
|
<%--</tr>--%>
|
||
|
<%--</c:forEach>--%>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|