Show More
Commit Description:
added problem date_added bulk update...
Commit Description:
added problem date_added bulk update git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@432 6386c4cd-e34a-4fa8-8920-d93eb39b512e
File last commit:
Show/Diff file:
Action:
app/views/problems/manage.html.haml | 32 lines | 780 B | text/x-haml | HamlLexer |
- content_for :head do
= stylesheet_link_tag 'problems'
= javascript_include_tag :defaults
%h1 Manage problems
%p= link_to '[Back to problem list]', :action => 'list'
- form_tag :action=>'do_manage' do
.submitbox
What do you want to do?
%br/
%ul
%li
Change date added to
= select_date Date.current, :prefix => 'date_added'
   
= submit_tag 'Change', :name => 'change_date_added'
%table
%tr
%th/
%th Name
%th Full name
%th Date added
- for problem in @problems
%tr{:id => "row-prob-#{problem.id}", :name=> "prob-#{problem.id}"}
%td= check_box_tag "prob-#{problem.id}"
%td= problem.name
%td= problem.full_name
%td= problem.date_added