<%@ 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%> un Servicio

<% if (editAllowed) {%>
Nombre del Servicio:

DNI del Empleado:

Correo electrónico del Empleado:

Teléfono del Empleado:
<% } else {%>
Nombre: <%= employee.getName() %>
Dni: <%= employee.getDni() %>
Correo electrónico: <%= employee.getEmail() %>
Creado por: <%= employee.getCreatorUserName() %>
<% } %>

arrow_backVolver