Show More
Commit Description:
fixed locale files, changed config sample to application.rb.SAMPLE
Commit Description:
fixed locale files, changed config sample to application.rb.SAMPLE
File last commit:
Show/Diff file:
Action:
app/views/user_admin/contest_management.html.haml | 26 lines | 789 B | text/x-haml | HamlLexer |
Jittat Fakcharoenphol
manages users in contests
r280 %h1 Bulk edit users in contests
Jittat Fakcharoenphol
fixed form_tag/form_for, disabled attributes whitelist
r321 = form_tag :action => 'manage_contest' do
Jittat Fakcharoenphol
manages users in contests
r280 List users' login below; one per line.
%br/
Jittat Fakcharoenphol
resets contest start time when changing users' contest
r289 = text_area_tag 'login_list', nil, :rows => 23, :cols => 80
Jittat Fakcharoenphol
manages users in contests
r280 %br/
Jittat Fakcharoenphol
sends notification emails to users after contest upgrade.
r296 %table
%tr
%td{:valign => 'top'}
You want to
= select(nil,"operation",[['assign users to','assign'],['add users to','add'],['remove users from','remove']])
contest
= select("contest","id",Contest.all.collect {|c| [c.title, c.id]})
and also
%td
= check_box_tag 'reset_timer'
Auto-reset current contest timer.
%br/
= check_box_tag 'notification_emails'
Send notification email(s).
Jittat Fakcharoenphol
resets contest start time when changing users' contest
r289
= submit_tag "Perform action!", :confirm => 'Are you sure?'
Jittat Fakcharoenphol
manages users in contests
r280
%hr/
= link_to '[go back to index]', :action => 'index'