mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 14:37:56 +01:00
25 lines
657 B
Plaintext
25 lines
657 B
Plaintext
|
<%@ taglib prefix="tiles" uri="http://struts.apache.org/tags-tiles" %>
|
||
|
|
||
|
<%@ include file="/jsp/init.jsp" %>
|
||
|
|
||
|
<tiles:importAttribute name="title" scope="page"/>
|
||
|
<tiles:importAttribute name="details" scope="page"/>
|
||
|
|
||
|
<div class="modalDialog">
|
||
|
|
||
|
<!-- Header can be customized -->
|
||
|
|
||
|
<c:if test="${(not empty pageScope.title)}">
|
||
|
<h1>
|
||
|
<spring:message code="${pageScope.title}"/>
|
||
|
</h1>
|
||
|
|
||
|
<c:if test="${(not empty pageScope.details)}">
|
||
|
<h2>
|
||
|
<spring:message code="${pageScope.details}"/>
|
||
|
</h2>
|
||
|
</c:if>
|
||
|
</c:if>
|
||
|
|
||
|
<tiles:insert name="body"/>
|
||
|
</div>
|