Show More
Commit Description:
Merge branch 'master' into codejom (updated rails version, removed judge)
Commit Description:
Merge branch 'master' into codejom (updated rails version, removed judge)
References:
File last commit:
Show/Diff file:
Action:
app/views/graders/list.html.haml | 51 lines | 1.4 KiB | text/x-haml | HamlLexer |
jittat
add grader list...
r32 - content_for :head do
= stylesheet_link_tag 'graders'
jittat
added first grader script calls from web (to stop grader)...
r202 <meta http-equiv ="refresh" content="60"/>
jittat
add grader list...
r32
jittat
MERGED 308:HEAD from http://theory.cpe.ku.ac.th/grader/web/branches/ytopc08-2/, removed some registration info...
r162 %h1 Grader information
jittat
[web] small styling, split out admin's menu, put config into table.info...
r77
jittat
import problem replaced old one, fixed small problems...
r205 = link_to '[Refresh]', :action => 'list'
%br/
jittat
added more grader control...
r203 .submitbox
.item
Grader control:
.item
- form_for :clear, nil, :url => {:action => 'start_grading'} do |f|
= submit_tag 'Start graders in grading env'
.item
- form_for :clear, nil, :url => {:action => 'start_exam'} do |f|
= submit_tag 'Start graders in exam env'
.item
- form_for :clear, nil, :url => {:action => 'stop_all'} do |f|
= submit_tag 'Stop all running graders'
.item
- form_for :clear, nil, :url => {:action => 'clear_all'} do |f|
= submit_tag 'Clear all data'
%br{:style => 'clear:both'}/
jittat
[web] updated grader monitoring...
r105
jittat
MERGED 308:HEAD from http://theory.cpe.ku.ac.th/grader/web/branches/ytopc08-2/, removed some registration info...
r162 - if @last_task
Last task:
= link_to "#{@last_task.id}", :action => 'view', :id => @last_task.id, :type => 'Task'
jittat
[web] more info on grader queues...
r127
jittat
MERGED 308:HEAD from http://theory.cpe.ku.ac.th/grader/web/branches/ytopc08-2/, removed some registration info...
r162 %br/
jittat
[web] more info on grader queues...
r127
jittat
MERGED 308:HEAD from http://theory.cpe.ku.ac.th/grader/web/branches/ytopc08-2/, removed some registration info...
r162 - if @last_test_request
Last test_request:
= link_to "#{@last_test_request.id}", :action => 'view', :id => @last_test_request.id, :type => 'TestRequest'
jittat
[web] more info on grader queues...
r127
jittat
updated grader list page...
r175 %h2 Current graders
jittat
add grader list...
r32
= render :partial => 'grader_list', :locals => {:grader_list => @grader_processes}
jittat
updated grader list page...
r175 %h2 Stalled graders
jittat
add grader list...
r32
= render :partial => 'grader_list', :locals => {:grader_list => @stalled_processes}
jittat
updated grader list page...
r175
%h2 Terminated graders
- form_for :clear, nil, :url => {:action => 'clear_terminated'} do |f|
= submit_tag 'Clear data for terminated graders'
= render :partial => 'grader_list', :locals => {:grader_list => @terminated_processes}