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

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

Some CSS adjustments to text color, img border, remove body height:100%, add buttons input.add to CSS.
Move admin stuff to AppAdmin? to make it very clear that it is not for daily use.
TaskDetailed? list and delete now use the IsActive? attribute.
Remove Task.comment size constraint.
Add more help-ballons to TaskDetailed? create.
Clean loose comments from main.gsp and auth.gsp
Use pretty pictures in TaskDetailed? views instead of Edit and Show words.

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