Handle search error message from Freemarker controller and template.

This commit is contained in:
rjy7 2010-08-27 16:52:26 +00:00
parent 73024a4d03
commit 589383f15b
3 changed files with 50 additions and 55 deletions

View file

@ -4,7 +4,7 @@
<h2>
Search Results for '${querytext}'
<#if classgroupName?has_content>limited to type '${classgroupName}'</#if>
<#if classgroupName?has_content>limited to type '${classGroupName}'</#if>
<#if typeName?has_content>limited to type '${typeName}'</#if>
</h2>

View file

@ -0,0 +1,9 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for displaying search error message -->
<#if title??>
<h2>${title}</h2>
</#if>
<p>${message}</p>