Ignore:
Timestamp:
May 1, 2009, 3:27:41 PM (15 years ago)
Author:
gav
Message:

Run generate-all on all controllers and views except Person and Authority.
Extensive work on Asset domain and application now compiles and runs well.
Update BootStrap? to suite.

File:
1 edited

Legend:

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

    r118 r122  
    4444                   
    4545                        <tr class="prop">
     46                            <td valign="top" class="name">Asset Extended Attributes:</td>
     47                           
     48                            <td  valign="top" style="text-align:left;" class="value">
     49                                <ul>
     50                                <g:each var="a" in="${assetTypeInstance.assetExtendedAttributes}">
     51                                    <li><g:link controller="assetExtendedAttribute" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
     52                                </g:each>
     53                                </ul>
     54                            </td>
     55                           
     56                        </tr>
     57                   
     58                        <tr class="prop">
    4659                            <td valign="top" class="name">Assets:</td>
    4760                           
     
    7184                   
    7285                        <tr class="prop">
    73                             <td valign="top" class="name">Lifeplan:</td>
     86                            <td valign="top" class="name">Maintenance Actions:</td>
    7487                           
    75                             <td valign="top" class="value"><g:link controller="lifePlan" action="show" id="${assetTypeInstance?.lifeplan?.id}">${assetTypeInstance?.lifeplan?.encodeAsHTML()}</g:link></td>
     88                            <td  valign="top" style="text-align:left;" class="value">
     89                                <ul>
     90                                <g:each var="m" in="${assetTypeInstance.maintenanceActions}">
     91                                    <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
     92                                </g:each>
     93                                </ul>
     94                            </td>
    7695                           
    7796                        </tr>
     
    81100                           
    82101                            <td valign="top" class="value">${fieldValue(bean:assetTypeInstance, field:'name')}</td>
    83                            
    84                         </tr>
    85                    
    86                         <tr class="prop">
    87                             <td valign="top" class="name">System Section:</td>
    88                            
    89                             <td valign="top" class="value"><g:link controller="systemSection" action="show" id="${assetTypeInstance?.systemSection?.id}">${assetTypeInstance?.systemSection?.encodeAsHTML()}</g:link></td>
    90102                           
    91103                        </tr>
Note: See TracChangeset for help on using the changeset viewer.