<%@ page import="model.User" %> <%@ page import="model.Employee" %> <%-- Created by IntelliJ IDEA. User: Fernando Date: 07/06/2018 Time: 16:39 To change this template use File | Settings | File Templates. --%> <% Employee employee = (Employee) request.getAttribute("Employee"); User usuario = (User) request.getAttribute("User"); boolean editAllowed = (Boolean) request.getAttribute("editAllowed"); String action = (String) request.getAttribute("action");%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%=action%> a Service - Hotel Services

<%=action%> a Service

<% if (editAllowed) {%>
Name of the Service:

DNI of the Employee:

Email of the Service:

Phone of the Employee:
<% } else {%>
Name: <%= employee.getName() %>
Dni: <%= employee.getDni() %>
Email: <%= employee.getEmail() %>
Created by: <%= employee.getCreatorUserName() %>
<% } %>

arrow_backGo Back