Show More
Commit Description:
Merge pull request #15 from nattee/master...
Commit Description:
Merge pull request #15 from nattee/master
finalizing merge of nattee's master
References:
File last commit:
Show/Diff file:
Action:
app/views/report/problem_hof.html.haml
| 23 lines
| 511 B
| text/x-haml
| HamlLexer
|
r425 | ||||
/- if params[:id] | ||||
/ %h1 Tasks Hall of Fame | ||||
/ = link_to('[back to All-Time Hall of Fame]', action: 'problem_hof', id: nil ) | ||||
/- else | ||||
/ %h1 All-Time Hall of Fame | ||||
r457 | %h1 Hall of Fame | |||
r400 | .task-menu | |||
Tasks | ||||
%br/ | ||||
- @problems.each do |prob| | ||||
= link_to( "[#{prob.name}]", {id: prob.id}) | ||||
r425 | - unless params[:id] | |||
/=render partial: 'all_time_hof' | ||||
Please select a problem. | ||||
- else | ||||
=render partial: 'task_hof' | ||||
r457 | %h2 Submission History | |||
=render partial: 'application/bar_graph', locals: { histogram: @histogram } | ||||
r400 | ||||