Ignore:
Timestamp:
Jan 15, 2010, 1:18:09 PM (14 years ago)
Author:
gav
Message:

Correct site-inventoryStores relationship and generate-all.
Copy section views over sectionDetailed.

File:
1 edited

Legend:

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

    r178 r273  
    55        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    66        <meta name="layout" content="main" />
    7         <title>Show SystemSection</title>
     7        <title>Show Section</title>
    88    </head>
    99    <body>
    1010        <div class="nav">
    11             <span class="menuButton"><g:link class="list" action="list">SystemSection List</g:link></span>
    12             <span class="menuButton"><g:link class="create" action="create">New SystemSection</g:link></span>
     11            <span class="menuButton"><g:link class="list" action="list">Section List</g:link></span>
     12            <span class="menuButton"><g:link class="create" action="create">New Section</g:link></span>
    1313        </div>
    1414        <div class="body">
    15             <h1>Show SystemSection</h1>
     15            <h1>Show Section</h1>
    1616            <g:if test="${flash.message}">
    1717            <div class="message">${flash.message}</div>
     
    2525                            <td valign="top" class="name">Id:</td>
    2626                           
    27                             <td valign="top" class="value">${fieldValue(bean:systemSectionInstance, field:'id')}</td>
     27                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'id')}</td>
    2828                           
    2929                        </tr>
     
    3232                            <td valign="top" class="name">Name:</td>
    3333                           
    34                             <td valign="top" class="value">${fieldValue(bean:systemSectionInstance, field:'name')}</td>
     34                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'name')}</td>
    3535                           
    3636                        </tr>
     
    3939                            <td valign="top" class="name">Description:</td>
    4040                           
    41                             <td valign="top" class="value">${fieldValue(bean:systemSectionInstance, field:'description')}</td>
    42                            
    43                         </tr>
    44                    
    45                         <tr class="prop">
    46                             <td valign="top" class="name">Cost Code:</td>
    47                            
    48                             <td valign="top" class="value">${fieldValue(bean:systemSectionInstance, field:'costCode')}</td>
    49                            
    50                         </tr>
    51                    
    52                         <tr class="prop">
    53                             <td valign="top" class="name">Department:</td>
    54                            
    55                             <td valign="top" class="value"><g:link controller="department" action="show" id="${systemSectionInstance?.department?.id}">${systemSectionInstance?.department?.encodeAsHTML()}</g:link></td>
    56                            
    57                         </tr>
    58                    
    59                         <tr class="prop">
    60                             <td valign="top" class="name">Site:</td>
    61                            
    62                             <td valign="top" class="value"><g:link controller="site" action="show" id="${systemSectionInstance?.site?.id}">${systemSectionInstance?.site?.encodeAsHTML()}</g:link></td>
     41                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'description')}</td>
    6342                           
    6443                        </tr>
     
    6746                            <td valign="top" class="name">Is Active:</td>
    6847                           
    69                             <td valign="top" class="value">${fieldValue(bean:systemSectionInstance, field:'isActive')}</td>
     48                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'isActive')}</td>
    7049                           
    7150                        </tr>
     
    7655                            <td  valign="top" style="text-align:left;" class="value">
    7756                                <ul>
    78                                 <g:each var="a" in="${systemSectionInstance.assets}">
    79                                     <li><g:link controller="assetDetailed" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
     57                                <g:each var="a" in="${sectionInstance.assets}">
     58                                    <li><g:link controller="asset" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
    8059                                </g:each>
    8160                                </ul>
    8261                            </td>
     62                           
     63                        </tr>
     64                   
     65                        <tr class="prop">
     66                            <td valign="top" class="name">Department:</td>
     67                           
     68                            <td valign="top" class="value"><g:link controller="department" action="show" id="${sectionInstance?.department?.id}">${sectionInstance?.department?.encodeAsHTML()}</g:link></td>
    8369                           
    8470                        </tr>
     
    8975                            <td  valign="top" style="text-align:left;" class="value">
    9076                                <ul>
    91                                 <g:each var="m" in="${systemSectionInstance.maintenanceActions}">
    92                                     <li><g:link controller="maintenanceActionDetailed" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
     77                                <g:each var="m" in="${sectionInstance.maintenanceActions}">
     78                                    <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
    9379                                </g:each>
    9480                                </ul>
    9581                            </td>
     82                           
     83                        </tr>
     84                   
     85                        <tr class="prop">
     86                            <td valign="top" class="name">Section Extended Attributes:</td>
     87                           
     88                            <td  valign="top" style="text-align:left;" class="value">
     89                                <ul>
     90                                <g:each var="s" in="${sectionInstance.sectionExtendedAttributes}">
     91                                    <li><g:link controller="sectionExtendedAttribute" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
     92                                </g:each>
     93                                </ul>
     94                            </td>
     95                           
     96                        </tr>
     97                   
     98                        <tr class="prop">
     99                            <td valign="top" class="name">Site:</td>
     100                           
     101                            <td valign="top" class="value"><g:link controller="site" action="show" id="${sectionInstance?.site?.id}">${sectionInstance?.site?.encodeAsHTML()}</g:link></td>
    96102                           
    97103                        </tr>
     
    102108            <div class="buttons">
    103109                <g:form>
    104                     <input type="hidden" name="id" value="${systemSectionInstance?.id}" />
     110                    <input type="hidden" name="id" value="${sectionInstance?.id}" />
    105111                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
    106112                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
Note: See TracChangeset for help on using the changeset viewer.