source: trunk/grails-app/views/storedItemDetailed/show.gsp @ 151

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

Replace all deprecated "createLinkTo" links with "resource".

File size: 2.9 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 StoredItem</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">StoredItem List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New StoredItem</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Show StoredItem</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <div class="dialog">
21                <table>
22                    <tbody>
23
24                   
25                        <tr class="prop">
26                            <td valign="top" class="name">Id:</td>
27                           
28                            <td valign="top" class="value">${fieldValue(bean:storedItemInstance, field:'id')}</td>
29                           
30                        </tr>
31                   
32                        <tr class="prop">
33                            <td valign="top" class="name">Quantity:</td>
34                           
35                            <td valign="top" class="value">${fieldValue(bean:storedItemInstance, field:'quantity')}</td>
36                           
37                        </tr>
38                   
39                        <tr class="prop">
40                            <td valign="top" class="name">Inventory Item:</td>
41                           
42                            <td valign="top" class="value"><g:link controller="inventoryItemDetailed" action="show" id="${storedItemInstance?.inventoryItem?.id}">${storedItemInstance?.inventoryItem?.encodeAsHTML()}</g:link></td>
43                           
44                        </tr>
45                   
46                        <tr class="prop">
47                            <td valign="top" class="name">Store Location:</td>
48                           
49                            <td valign="top" class="value"><g:link controller="storeLocationDetailed" action="show" id="${storedItemInstance?.storeLocation?.id}">${storedItemInstance?.storeLocation?.encodeAsHTML()}</g:link></td>
50                           
51                        </tr>
52                   
53                    </tbody>
54                </table>
55            </div>
56            <div class="buttons">
57                <g:form>
58                    <input type="hidden" name="id" value="${storedItemInstance?.id}" />
59                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
60                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
61                </g:form>
62            </div>
63        </div>
64    </body>
65</html>
Note: See TracBrowser for help on using the repository browser.