blob: 8ee48f60be03f8b160d2c56a0742697e616bc325 [file] [log] [blame]
<#--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<#if requestAttributes.errorMessageList?has_content><#assign errorMessageList=requestAttributes.errorMessageList></#if>
<#if requestAttributes.eventMessageList?has_content><#assign eventMessageList=requestAttributes.eventMessageList></#if>
<#if requestAttributes.serviceValidationException??><#assign serviceValidationException = requestAttributes.serviceValidationException></#if>
<#if requestAttributes.uiLabelMap?has_content><#assign uiLabelMap = requestAttributes.uiLabelMap></#if>
<#if !errorMessage?has_content>
<#assign errorMessage = requestAttributes._ERROR_MESSAGE_!>
</#if>
<#if !errorMessageList?has_content>
<#assign errorMessageList = requestAttributes._ERROR_MESSAGE_LIST_!>
</#if>
<#if !eventMessage?has_content>
<#assign eventMessage = requestAttributes._EVENT_MESSAGE_!>
</#if>
<#if !eventMessageList?has_content>
<#assign eventMessageList = requestAttributes._EVENT_MESSAGE_LIST_!>
</#if>
<#-- display the error messages -->
<#if (errorMessage?has_content || errorMessageList?has_content)>
<div class="errorMessage">Errors Occurred:</div><br />
<ul>
<#if errorMessage?has_content>
<li class="errorMessage">${errorMessage}</li>
</#if>
<#if errorMessageList?has_content>
<#list errorMessageList as errorMsg>
<li class="errorMessage">${errorMsg}</li>
</#list>
</#if>
</ul>
<br />
</#if>
<#-- display the event messages -->
<#if (eventMessage?has_content || eventMessageList?has_content)>
<div class="eventMessage">Events:</div><br />
<ul>
<#if eventMessage?has_content>
<li class="eventMessage">${eventMessage}</li>
</#if>
<#if eventMessageList?has_content>
<#list eventMessageList as eventMsg>
<li class="eventMessage">${eventMsg}</li>
</#list>
</#if>
</ul>
<br />
</#if>