Ignore:
Timestamp:
Feb 18, 2010, 4:51:45 AM (14 years ago)
Author:
gav
Message:

Svn move SupplierType and ManufacturerType controllers and views to detailed and complete detailing.

Location:
trunk/grails-app/views/supplierTypeDetailed
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/supplierTypeDetailed/show.gsp

    r178 r383  
    66        <meta name="layout" content="main" />
    77        <title>Show SupplierType</title>
     8        <nav:resources override="true"/>
    89    </head>
    910    <body>
    1011        <div class="nav">
    11             <span class="menuButton"><g:link class="list" action="list">SupplierType List</g:link></span>
    12             <span class="menuButton"><g:link class="create" action="create">New SupplierType</g:link></span>
     12            <nav:renderSubItems group="navAlt"/>
    1313        </div>
    1414        <div class="body">
    15             <h1>Show SupplierType</h1>
    1615            <g:if test="${flash.message}">
    1716            <div class="message">${flash.message}</div>
     
    2625                           
    2726                            <td valign="top" class="value">${fieldValue(bean:supplierTypeInstance, field:'id')}</td>
     27                           
     28                        </tr>
     29                   
     30                        <tr class="prop">
     31                            <td valign="top" class="name">Name:</td>
     32                           
     33                            <td valign="top" class="value">${fieldValue(bean:supplierTypeInstance, field:'name')}</td>
    2834                           
    2935                        </tr>
     
    4450                   
    4551                        <tr class="prop">
    46                             <td valign="top" class="name">Name:</td>
    47                            
    48                             <td valign="top" class="value">${fieldValue(bean:supplierTypeInstance, field:'name')}</td>
    49                            
    50                         </tr>
    51                    
    52                         <tr class="prop">
    5352                            <td valign="top" class="name">Suppliers:</td>
    5453                           
     
    5655                                <ul>
    5756                                <g:each var="s" in="${supplierTypeInstance.suppliers}">
    58                                     <li><g:link controller="supplier" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
     57                                    <li><g:link controller="supplierDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
    5958                                </g:each>
    6059                                </ul>
Note: See TracChangeset for help on using the changeset viewer.