source: branches/TaskRewrite/src/grails-app/views/_adminmenubar.gsp @ 73

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

Add changePassword under options view so that users can change their own password.
Adjust for password validation, userCache etc. Only a small bug during "edit" is left on second "update" command.

  • Property svn:executable set to *
File size: 549 bytes
Line 
1<g:isLoggedIn>
2    <g:ifAnyGranted role="ROLE_AppAdmin">
3        <span class="appControlButton">
4            <g:link controller="appCore" action="admin">
5                Admin
6            </g:link>
7        </span>
8    </g:ifAnyGranted>
9    <span class="appControlButton">
10        <g:link controller="appCore" action="options">
11                Options
12        </g:link>
13    </span>
14    <span class="appControlButton">
15        <g:link controller="logout">
16                Log out (<g:loggedInUsername/>)
17        </g:link>
18    </span>
19</g:isLoggedIn>
20
Note: See TracBrowser for help on using the repository browser.