Thursday 19 August 2004 8:36:35 am
It is a nested form. It's a set of buttons, used for View, Edit, Delete.
<form method="post" action={"content/action/"|ezurl}>
{* View Full Record Button needs to go here *}
{* The link that works *}
<a href="{$:item.path_identification_string|wash}">view full record</a>
<input class="button" type="submit" name="EditButton" value="{'Edit'|i18n('design/standard/node/view')}" />
<input class="button" type="submit" name="ActionRemove" value="{'Delete'|i18n('design/standard/node/view')}" />
<input type="hidden" name="ContentNodeID" value="{$:item.node_id}" />
</form>
I was thinking about creating a new button so as to follow the format for the edit and remove buttons, but I think I may just use the link, as this seems like (edit: unnecessary) gold plating.
|