Código HTML:
<html> <head> <link href="<s:url value="/resources/main.css"/>" rel="stylesheet" type="text/css"/> <title><s:text name="label.usuarios"/></title> </head> <body> <div class="titleDiv"><s:text name="application.title"/></div> <h1><s:text name="label.usuarios"/></h1> <s:url id="cerrar" action="logoutUsuario"/> <div align="left"> Bienvenido <%= session.getAttribute("logged-in") %><br> </div> <div align="right"> <s:a href="%{cerrar}">Cerrar Sesión</s:a> </div> <table align=center class="borderAll"> <tr> <th><s:text name="label.id"/></th> <th><s:text name="label.nombre"/></th> <th><s:text name="label.password"/></th> <th> </th> </tr> <s:set id="variable" name="variable" value="%{#session.getAttribute('logged-in')}"/> <s:iterator value="usuarios" status="status"> <tr class="<s:if test="#status.even">even</s:if><s:else>odd</s:else>"> <td class="nowrap"><s:property value="Id"/></td> <td class="nowrap"><s:property value="nombre"/></td> <td class="nowrap"><s:property value="password"/></td> <s:if test="%{#variable=='Administrador'}"> <td class="nowrap"> <s:url id="modificar" action="preModificaUsuario"> <s:param name="Usuario.Id" value="Id"></s:param> </s:url> <s:a href="%{modificar}">Modificar</s:a> <s:url id="borrar" action="borraUsuario"> <s:param name="Usuario.Id" value="Id"></s:param> </s:url> <s:a href="%{borrar}">Eliminar</s:a> </td> </s:if> </tr> </s:iterator> </table> <center> <s:url id="insert" action="preInsertaUsuario"/> <s:a href="%{insert}">Insertar nuevo</s:a> </center> </body> </html>