Ignore:
Timestamp:
Feb 18, 2010, 3:42:40 AM (14 years ago)
Author:
gav
Message:

Svn move InventoryGroup controller and views to detailed and complete detailing.

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

Legend:

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

    r178 r380  
    66        <meta name="layout" content="main" />
    77        <title>Show InventoryGroup</title>
     8        <nav:resources override="true"/>
    89    </head>
    910    <body>
    1011        <div class="nav">
    11             <span class="menuButton"><g:link class="list" action="list">InventoryGroup List</g:link></span>
    12             <span class="menuButton"><g:link class="create" action="create">New InventoryGroup</g:link></span>
     12            <nav:renderSubItems group="navAlt"/>
    1313        </div>
    1414        <div class="body">
    15             <h1>Show InventoryGroup</h1>
    1615            <g:if test="${flash.message}">
    1716            <div class="message">${flash.message}</div>
     
    4241                           
    4342                        </tr>
    44                    
    45                         <tr class="prop">
    46                             <td valign="top" class="name">Inventory Items:</td>
    47                            
    48                             <td  valign="top" style="text-align:left;" class="value">
    49                                 <ul>
    50                                 <g:each var="i" in="${inventoryGroupInstance.inventoryItems}">
    51                                     <li><g:link controller="inventoryItem" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
    52                                 </g:each>
    53                                 </ul>
    54                             </td>
    5543                           
    5644                        </tr>
     
    6250                           
    6351                        </tr>
     52                   
     53                        <tr class="prop">
     54                            <td valign="top" class="name">Inventory Items:</td>
     55                           
     56                            <td  valign="top" style="text-align:left;" class="value">
     57                                <ul>
     58                                <g:each var="i" in="${inventoryGroupInstance.inventoryItems}">
     59                                    <li><g:link controller="inventoryItemDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
     60                                </g:each>
     61                                </ul>
     62                            </td>
    6463                   
    6564                    </tbody>
Note: See TracChangeset for help on using the changeset viewer.