Description:
fixed layout problem, for real, using render :layout => ...
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@51 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r27:e418fd4486af - - 5 files changed: 26 inserted, 26 deleted
@@ -0,0 +1,22 | |||||
|
|
1 | + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
|
|
2 | + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
|
|
3 | + | ||
|
|
4 | + <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
|
|
5 | + <head> | ||
|
|
6 | + <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> | ||
|
|
7 | + <title>Grader!</title> | ||
|
|
8 | + <%= stylesheet_link_tag 'application' %> | ||
|
|
9 | + <%= yield :head %> | ||
|
|
10 | + </head> | ||
|
|
11 | + <body> | ||
|
|
12 | + | ||
|
|
13 | + <div class="userbar"> | ||
|
|
14 | + <%= user_header %> | ||
|
|
15 | + </div> | ||
|
|
16 | + | ||
|
|
17 | + <p style="color: green"><%= flash[:notice] %></p> | ||
|
|
18 | + | ||
|
|
19 | + <%= yield %> | ||
|
|
20 | + | ||
|
|
21 | + </body> | ||
|
|
22 | + </html> |
@@ -1,23 +1,21 | |||||
|
1 | class MainController < ApplicationController |
|
1 | class MainController < ApplicationController |
|
2 |
|
2 | ||
|
3 | before_filter :authenticate, :except => [:index, :login] |
|
3 | before_filter :authenticate, :except => [:index, :login] |
|
4 |
|
4 | ||
|
5 | - layout 'application' |
|
||
|
6 | - |
|
||
|
7 | verify :method => :post, :only => [:submit], |
|
5 | verify :method => :post, :only => [:submit], |
|
8 | :redirect_to => { :action => :index } |
|
6 | :redirect_to => { :action => :index } |
|
9 |
|
7 | ||
|
10 |
|
8 | ||
|
11 | def index |
|
9 | def index |
|
12 | redirect_to :action => 'login' |
|
10 | redirect_to :action => 'login' |
|
13 | end |
|
11 | end |
|
14 |
|
12 | ||
|
15 | def login |
|
13 | def login |
|
16 | - MainController.layout 'empty' |
|
||
|
17 | reset_session |
|
14 | reset_session |
|
|
15 | + render :action => 'login', :layout => 'empty' | ||
|
18 | end |
|
16 | end |
|
19 |
|
17 | ||
|
20 | def list |
|
18 | def list |
|
21 | @problems = Problem.find_available_problems |
|
19 | @problems = Problem.find_available_problems |
|
22 | @prob_submissions = Array.new |
|
20 | @prob_submissions = Array.new |
|
23 | @user = User.find(session[:user_id]) |
|
21 | @user = User.find(session[:user_id]) |
@@ -8,13 +8,13 | |||||
|
8 | # main page |
|
8 | # main page |
|
9 | options += link_to_unless_current '[Main]', |
|
9 | options += link_to_unless_current '[Main]', |
|
10 | :controller => 'main', :action => 'list' |
|
10 | :controller => 'main', :action => 'list' |
|
11 | options += ' ' |
|
11 | options += ' ' |
|
12 |
|
12 | ||
|
13 | # admin menu |
|
13 | # admin menu |
|
14 | - if user.admin? |
|
14 | + if (user!=nil) and (user.admin?) |
|
15 | options += |
|
15 | options += |
|
16 | (link_to_unless_current '[Problem admin]', |
|
16 | (link_to_unless_current '[Problem admin]', |
|
17 | :controller => 'problems', :action => 'index') + ' ' |
|
17 | :controller => 'problems', :action => 'index') + ' ' |
|
18 | options += |
|
18 | options += |
|
19 | (link_to_unless_current '[User admin]', |
|
19 | (link_to_unless_current '[User admin]', |
|
20 | :controller => 'user_admin', :action => 'index') + ' ' |
|
20 | :controller => 'user_admin', :action => 'index') + ' ' |
@@ -6,12 +6,14 | |||||
|
6 | <h1>Listing problems</h1> |
|
6 | <h1>Listing problems</h1> |
|
7 |
|
7 | ||
|
8 | <div class="usermenu"> |
|
8 | <div class="usermenu"> |
|
9 | <%= link_to 'Main', :controller => 'main', :action => 'list' %> |
|
9 | <%= link_to 'Main', :controller => 'main', :action => 'list' %> |
|
10 | </div> |
|
10 | </div> |
|
11 |
|
11 | ||
|
|
12 | + <%= link_to 'New problem', :action => 'new' %><br/> | ||
|
|
13 | + | ||
|
12 | <table> |
|
14 | <table> |
|
13 | <tr> |
|
15 | <tr> |
|
14 | <th>Name</th> |
|
16 | <th>Name</th> |
|
15 | <th>Full name</th> |
|
17 | <th>Full name</th> |
|
16 | <th>Full score</th> |
|
18 | <th>Full score</th> |
|
17 | <th>Date added</th> |
|
19 | <th>Date added</th> |
deleted file |
You need to be logged in to leave comments.
Login now