source: trunk/src/grails-app/views/_adminmenubar.gsp @ 40

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

Added login page and adjusted Person domain/views/controller and BootStrap?.
Add beforeInterceptor() to all controllers.
Added BaseController?.
Added adminmenubar adjust layout and css to suite.

  • Property svn:executable set to *
File size: 458 bytes
Line 
1<g:if test="${session.userId}">
2    <span class="appControlButton">
3        <g:link controller="task" action="list">
4                Task
5        </g:link>
6    </span>
7    <span class="appControlButton">
8        <g:link controller="person" action="admin">
9                Admin
10        </g:link>
11    </span>
12    <span class="appControlButton">
13        <g:link controller="person" action="logout">
14               Log out
15        </g:link>
16    </span>
17</g:if>
Note: See TracBrowser for help on using the repository browser.