Some refactoring in SimpleReasonerRecomputeController to reduce clutter in the controller and template.

This commit is contained in:
ryounes 2011-08-29 21:21:39 +00:00
parent 315aac425c
commit 6b5ec3efda
2 changed files with 22 additions and 27 deletions

View file

@ -1,11 +1,11 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#if link??>
<form method="post" action="RecomputeInferences">
<#if formAction?has_content>
<form method="post" action="${formAction}">
<input type="submit" value="Recompute Inferences" name="submit"/>
<input type="hidden" value="Recompute" name="signal">
</form>
</#if>
<#if message??>
<#if message?has_content>
<p>${message}</p>
</#if>