Show More
Commit Description:
submission report
Commit Description:
submission report
File last commit:
Show/Diff file:
Action:
app/views/shared/_problem_select.html.haml | 10 lines | 387 B | text/x-haml | HamlLexer |
.panel.panel-primary
.panel-heading
Problems
.panel-body
%p
Select problem(s) to be included in the report
= label_tag :problem_id, "Problems"
= select_tag 'problem_id[]',
options_for_select(Problem.all.collect {|p| ["[#{p.name}] #{p.full_name}", p.id]},params[:problem_id]),
{ id: :problem_id, class: 'select2 form-control', multiple: "true" }