source: trunk/grails-app/views/appCore/home.gsp @ 116

Last change on this file since 116 was 116, checked in by gav, 15 years ago

First commit of Inventory domain, including domain-classes, controllers, views and bootstrap. Also double check/adjust as required security extends in controllers.

  • Property svn:executable set to *
File size: 879 bytes
Line 
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html;
4      charset=UTF-8"/>
5<meta name="layout" content="main" />
6<title>Home</title>
7</head>
8    <body>
9        <div class="nav">
10            <span class="menuButton"><g:link class="list" controller="taskDetailed" action="list">Tasks</g:link></span>
11            <span class="menuButton"><g:link class="list" controller="inventoryItemDetailed" action="list">Inventory</g:link></span>
12
13        </div>
14        <div class="body">
15            <h1></h1>
16            <g:if test="${flash.message}">
17                <div class="message">${flash.message}</div>
18            </g:if>
19            <g:hasErrors bean="${appCore}">
20                <div class="errors">
21                    <g:renderErrors bean="${appCore}" as="list" />
22                </div>
23            </g:hasErrors>
24           
25        </div>
26    </body>
27</html>
Note: See TracBrowser for help on using the repository browser.