Show More
Commit Description:
add feature check maximum score in submission ranges...
Commit Description:
add feature check maximum score in submission ranges available in the [result] admin menu. A user can enter a range of submissions id and the maximum score per each user,problem among the submission ranges will be reported (grafted from a9d427f3be11871c9948750e94ba5ae988f24eb7)
File last commit:
Show/Diff file:
Action:
app/models/contest.rb | 8 lines | 163 B | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
added contest model
r266 class Contest < ActiveRecord::Base
Jittat Fakcharoenphol
created join tables for contests and users and problems
r268
has_and_belongs_to_many :users
has_and_belongs_to_many :problems
Jittat Fakcharoenphol
added verify plug-in, fixed form_for, form_tag in views, changed named_scope to scope
r319 scope :enabled, :conditions => {:enabled => true}
Jittat Fakcharoenphol
shows only enabled contests, ordered by name
r285
Jittat Fakcharoenphol
added contest model
r266 end