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

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

Detail controller and views for Asset, AssetExtendedAttribute?, PlannedMaintenance?, MaintenanceAction?, RecurringSchedule?, SystemSection?.
Some minor work on Task controller and views.
Change PlannedMaintenance? relationship, adjust ERD, Bootstrap and Domain classes to suite.

  • Property svn:executable set to *
File size: 1001 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            <span class="menuButton"><g:link class="list" controller="assetDetailed" action="list">Assets</g:link></span>
13
14        </div>
15        <div class="body">
16            <h1></h1>
17            <g:if test="${flash.message}">
18                <div class="message">${flash.message}</div>
19            </g:if>
20            <g:hasErrors bean="${appCore}">
21                <div class="errors">
22                    <g:renderErrors bean="${appCore}" as="list" />
23                </div>
24            </g:hasErrors>
25           
26        </div>
27    </body>
28</html>
Note: See TracBrowser for help on using the repository browser.