Description:
added codejom admin menu
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r264:dd1c5a266e4f - - 1 file changed: 1 inserted, 0 deleted
@@ -1,22 +1,23 | |||
|
1 | 1 | # Methods added to this helper will be available to all templates in the application. |
|
2 | 2 | module ApplicationHelper |
|
3 | 3 | |
|
4 | 4 | def user_header |
|
5 | 5 | menu_items = '' |
|
6 | 6 | user = User.find(session[:user_id]) |
|
7 | 7 | |
|
8 | 8 | if (user!=nil) and (session[:admin]) |
|
9 | 9 | # admin menu |
|
10 | 10 | menu_items << "<b>Administrative task:</b> " |
|
11 | + append_to menu_items, '[CODEJOM]', 'codejom', 'index' | |
|
11 | 12 | append_to menu_items, '[Announcements]', 'announcements', 'index' |
|
12 | 13 | append_to menu_items, '[Msg console]', 'messages', 'console' |
|
13 | 14 | append_to menu_items, '[Problems]', 'problems', 'index' |
|
14 | 15 | append_to menu_items, '[Users]', 'user_admin', 'index' |
|
15 | 16 | append_to menu_items, '[Results]', 'user_admin', 'user_stat' |
|
16 | 17 | append_to menu_items, '[Graders]', 'graders', 'list' |
|
17 | 18 | append_to menu_items, '[Contests]', 'contests', 'index' |
|
18 | 19 | append_to menu_items, '[Sites]', 'sites', 'index' |
|
19 | 20 | append_to menu_items, '[System config]', 'configurations', 'index' |
|
20 | 21 | menu_items << "<br/>" |
|
21 | 22 | end |
|
22 | 23 |
You need to be logged in to leave comments.
Login now