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.
 
 
 
 
 
 

16 lines
671 B

{strip}
{* $Id$ *}
<form action="tiki-index.php?page={$params.page|escape:url}{$params.urlparams}" method="post">
{capture name=prefills}
{foreach from=$prefills item=field name=foo}
{if !$smarty.foreach.foo.first}:{/if}
{$field.fieldId}
{/foreach}
{/capture}
<input type="hidden" name="prefills" value="{$smarty.capture.prefills}">
{foreach from=$prefills item=field}
<input type="hidden" name="values[]" value="{$field.value|escape}">
{/foreach}
<input type="submit" class="btn btn-primary btn-sm button submit" name="go" value="{if $params.label}{tr}{$params.label}{/tr}{else}{tr}Go{/tr}{/if}">
</form>
{/strip}