You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
1.2 KiB

<%@ include file="/init.jsp" %>
<c:choose>
<c:when test = "${modoEdit == false}">
<c:choose>
<c:when test = "${monstrarRedireccion == true}">
<div class="container">
<div id="cargandoContratos" style="text-align: center;margin: inherit; margin-top: 5%; margin-bottom: 5%;">
<img src="<%=request.getContextPath()%>/images/loader.gif" alt="loading"><br><liferay-ui:message key="modelo.redireccion.seguimiento.cargando"/></div>
</div>
<script type="text/javascript">
$(document).ready(function() {
console.log("Redireccion Seguimiento" );
var redireccioPermanencia = '${urlPermanenciaRedirect}';
var redireccioSeguimiento = '${urlSeguimiento}';
window.open(redireccioSeguimiento, '_blank');
window.location.replace(redireccioPermanencia);
});
</script>
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</c:when>
<c:otherwise>
<div class="container">
<h2 class="component-heading mb-0 pb-0 text-center text-break text-blue-hites">
<div class="title-hites" style="margin-top: 10%;margin-bottom: 10%;"><liferay-ui:message key="modelo.redireccion.seguimiento.sin.redirecion"/></div>
</h2>
</div>
</c:otherwise>
</c:choose>

Powered by TurnKey Linux.