source: trunk/grails-app/views/purchasingGroupDetailed/show.gsp @ 967

Last change on this file since 967 was 633, checked in by gav, 14 years ago

Domain change: Add PurchasingGroup?.
Logic and views to suite.

File size: 4.0 KB
Line 
1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
7        <title>Show PurchasingGroup</title>
8        <nav:resources override="true"/>
9    </head>
10    <body>
11        <div class="nav">
12            <nav:renderSubItems group="navAlt"/>
13        </div>
14        <div class="body">
15            <g:render template="/shared/messages" />
16            <div class="dialog">
17                <table>
18                    <tbody>
19
20                   
21                        <tr class="prop">
22                            <td valign="top" class="name">Id:</td>
23                           
24                            <td valign="top" class="value">${fieldValue(bean:purchasingGroupInstance, field:'id')}</td>
25                           
26                        </tr>
27                   
28                        <tr class="prop">
29                            <td valign="top" class="name">Name:</td>
30                           
31                            <td valign="top" class="value">${fieldValue(bean:purchasingGroupInstance, field:'name')}</td>
32                           
33                        </tr>
34                   
35                        <tr class="prop">
36                            <td valign="top" class="name">Description:</td>
37                           
38                            <td valign="top" class="value">${fieldValue(bean:purchasingGroupInstance, field:'description')}</td>
39                           
40                        </tr>
41                   
42                        <tr class="prop">
43                            <td valign="top" class="name">Is Active:</td>
44                           
45                            <td valign="top" class="value">${fieldValue(bean:purchasingGroupInstance, field:'isActive')}</td>
46                           
47                        </tr>
48                   
49                        <tr class="prop">
50                            <td valign="top" class="name">Cost Codes:</td>
51                           
52                            <td  valign="top" style="text-align:left;" class="value">
53                                <ul>
54                                <g:each var="i" in="${purchasingGroupInstance.costCodes}">
55                                    <li><g:link controller="costCodeDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
56                                </g:each>
57                                </ul>
58                                <g:link controller="costCodeDetailed" params="['purchasingGroup.id':purchasingGroupInstance?.id]" action="create">+Add Cost Code</g:link>
59                            </td>
60                           
61                        </tr>
62                   
63                        <tr class="prop">
64                            <td valign="top" class="name">Persons:</td>
65                           
66                            <td  valign="top" style="text-align:left;" class="value">
67                                <ul>
68                                <g:each var="i" in="${purchasingGroupInstance.persons}">
69                                    <li><g:link controller="person" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
70                                </g:each>
71                                </ul>
72                                <g:link controller="person" action="list">+Add Person</g:link>
73                            </td>
74                           
75                        </tr>
76                   
77                    </tbody>
78                </table>
79            </div>
80            <div class="buttons">
81                <g:form>
82                    <input type="hidden" name="id" value="${purchasingGroupInstance?.id}" />
83                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
84                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
85                </g:form>
86            </div>
87        </div>
88    </body>
89</html>
Note: See TracBrowser for help on using the repository browser.