Show More
Commit Description:
fixed problem insertion attribute error
Commit Description:
fixed problem insertion attribute error
File last commit:
Show/Diff file:
Action:
app/views/contest_management/index.html.haml | 34 lines | 1.0 KiB | text/x-haml | HamlLexer |
Jittat Fakcharoenphol
added contest model
r266 %h1 Contest management
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 .infobox
Jittat Fakcharoenphol
added contest model
r266
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 - if @num_contests>1
%b Multiple contests:
= "There are #{@num_contests} contests running."
- else
%b Single contest:
Jittat Fakcharoenphol
fixed javascript/css assets, fixed link_to_remote in problems page
r322 =raw "[#{link_to 'Add/remove contests', :controller => 'contests', :action => 'index'}]"
Jittat Fakcharoenphol
added contest model
r266
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 .infobox
%b Web interface mode:
wytesk133
Added an option to change to Analysis Mode
r369 - if GraderConfiguration.analysis_mode?
Analysis Mode
- elsif (not GraderConfiguration.contest_mode?) and (not GraderConfiguration.indv_contest_mode?)
Standard Mode
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 - elsif GraderConfiguration.contest_mode?
wytesk133
Added an option to change to Analysis Mode
r369 Normal Contest Mode
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 - else
wytesk133
Added an option to change to Analysis Mode
r369 Individual Contest Mode
Jittat Fakcharoenphol
added contest model
r266
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267 %br/
Change mode to:
wytesk133
Added an option to change to Analysis Mode
r369 =raw "[#{link_to 'Standard', :action => 'change_contest_mode', :id => 'standard'}]"
=raw "[#{link_to 'Contest', :action => 'change_contest_mode', :id => 'contest'}]"
=raw "[#{link_to 'Individual Contest', :action => 'change_contest_mode', :id => 'indv-contest'}]"
=raw "[#{link_to 'Analysis', :action => 'change_contest_mode', :id => 'analysis'}]"
Jittat Fakcharoenphol
CRUD for contests. combined new contest pages with old contest management. fixed styling.
r267
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 - if GraderConfiguration.indv_contest_mode?
Jittat Fakcharoenphol
added contest model
r266 = render :partial => 'indv_contest_mode_index'
%br/