<#-- Copyright 2006 - 2012 Hannes Holtzhausen Licensed 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. --> <#-- $Id: types.ftl,v 1.4 2007/11/01 22:53:15 hannes Exp $ Description: The product type template --> <#if request.id?exists> <#assign form_data=type_helper("id",request.id)/> <#else> <#assign form_data=request/>

Product Types

Add/Update Product Type

<@xhtml.form name="type" action="controller?action=type"> <#if request.id?exists> <@xhtml.form_input name="type_action" type="hidden" value="update"/> <@xhtml.form_input name="id" type="hidden" value=request.id/> <#else> <@xhtml.form_input name="type_action" type="hidden" value="add"/>
<@xhtml.form_input name="type" class="inputText" value=form_data.type?default('')/>
<@xhtml.form_input name="description" class="inputText" value=form_data.description?default('')/>
  <@xhtml.form_submit type="submit" value="Add/Update"/>

List of Product Types

<#assign typeList=type_helper("all")/>

<@xhtml.table headers=[" ","Type","Description"]> <#list typeList as type> <@xhtml.table_tr> <@xhtml.table_td value=type.type/> <@xhtml.table_td value=type.description?default(' ')/>