Show More
Commit Description:
add 2nd level sort problem by name (not full name)...
Commit Description:
add 2nd level sort problem by name (not full name) show problem name before full_name in main/list
References:
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