Description:
more report adjustment
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r440:d56910b3d8d2 - - 2 files changed: 2 inserted, 2 deleted

@@ -1,68 +1,68
1 1 :css
2 2 .hof_user { color: orangered; font-style: italic; }
3 3 .hof_language { color: green; font-style: italic; }
4 4 .hof_value { color: deeppink;font-style: italic; }
5 5
6 6 %h2 Overall
7 7
8 8 - if @best
9 9 %b Best Runtime:
10 10 by #{link_to @best[:runtime][:user], controller:'users', action:'profile', id:@best[:memory][:user_id]}
11 11 using <span class="hof_language">#{@best[:runtime][:lang]}</span>
12 12 with <span class="hof_value">#{@best[:runtime][:value] * 1000} milliseconds</span>
13 13 at submission
14 14 = link_to("#" + @best[:runtime][:sub_id].to_s, controller: 'graders', action: 'submission', id:@best[:runtime][:sub_id])
15 15 %br/
16 16
17 17 %b Best Memory Usage:
18 18 by #{link_to @best[:memory][:user], controller:'users', action:'profile', id:@best[:memory][:user_id]}
19 19 using <span class="hof_language">#{@best[:memory][:lang]}</span>
20 - with <span class="hof_value">#{@best[:memory][:value]} kbytes </span>
20 + with <span class="hof_value">#{number_with_delimiter(@best[:memory][:value])} kbytes </span>
21 21 at submission
22 22 = link_to("#" + @best[:memory][:sub_id].to_s, controller: 'graders' , action: 'submission', id:@best[:memory][:sub_id])
23 23 %br/
24 24
25 25 %b Shortest Code:
26 26 by #{link_to @best[:length][:user], controller:'users', action:'profile', id:@best[:length][:user_id]}
27 27 using <span class="hof_language">#{@best[:length][:lang]}</span>
28 28 with <span class="hof_value">#{@best[:length][:value]} bytes</span>
29 29 at submission
30 30 = link_to("#" + @best[:length][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:length][:sub_id])
31 31 %br/
32 32
33 33 %b First solver:
34 34 #{link_to @best[:first][:user], controller:'users', action:'profile', id:@best[:first][:user_id]} is the first solver
35 35 using <span class="hof_language">#{@best[:first][:lang]}</span>
36 36 on <span class="hof_value">#{@best[:first][:value]}</span>
37 37 at submission
38 38 = link_to("#" + @best[:first][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:first][:sub_id])
39 39 %br/
40 40
41 41
42 42 %p
43 43 This counts only for submission with 100% score <br/>
44 44 Right now, java is excluded from memory usage competition. (Because it always uses 2GB memory...)
45 45
46 46 %h2 By language
47 47
48 48 %table.info
49 49 %thead
50 50 %tr.info-head
51 51 %th Language
52 52 %th Best runtime (ms)
53 53 %th Best memory (kbytes)
54 54 %th Shortest Code (bytes)
55 55 %th First solver
56 56 %tbody
57 57 - @by_lang.each do |lang,value|
58 58 %tr{class: cycle('info-even','info-odd')}
59 59 %td= lang
60 60 %td
61 61 = link_to value[:runtime][:user], controller: 'users', action: 'profile', id: value[:runtime][:user_id]
62 62 = "(#{(value[:runtime][:value] * 1000).to_i} @"
63 63 = "#{link_to("#" + value[:runtime][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:runtime][:sub_id])} )".html_safe
64 64 %td
65 65 = link_to value[:memory][:user], controller: 'users', action: 'profile', id: value[:memory][:user_id]
66 66 = "(#{number_with_delimiter(value[:memory][:value])} @"
67 67 = "#{link_to("#" + value[:memory][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:memory][:sub_id])} )".html_safe
68 68 %td
@@ -1,32 +1,32
1 1 - content_for :header do
2 2 = stylesheet_link_tag 'tablesorter-theme.cafe'
3 3 = javascript_include_tag 'new'
4 4
5 5 %script{:type=>"text/javascript"}
6 6 $(function () {
7 7 $('#since_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} );
8 8 $('#until_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} );
9 9 $('#my_table').tablesorter({widthFixed: true, widgets: ['zebra']});
10 10 });
11 11
12 12 %h1 Login status
13 13
14 14 =render partial: 'report_menu'
15 15 =render partial: 'date_range', locals: {param_text: 'Login date range:', title: 'Query login stat in the range' }
16 16
17 17 %table.tablesorter-cafe#my_table
18 18 %thead
19 19 %tr
20 20 %th login
21 21 %th full name
22 22 %th login count
23 23 %th earliest
24 24 %th latest
25 25 %tbody
26 26 - @logins.each do |l|
27 27 %tr{class: cycle('info-even','info-odd')}
28 28 %td= link_to l[:login], controller: 'users', action: 'profile', id: l[:id]
29 29 %td= l[:full_name]
30 30 %td= l[:count]
31 31 %td= l[:min] ? l[:min].in_time_zone.strftime('%Y-%m-%d %H:%M') : ''
32 - %td= l[:max] ? time_ago_in_words(l[:max].in_time_zone) + ' ago' : ''
32 + %td= l[:max] ? "#{l[:max].in_time_zone.strftime('%Y-%m-%d %H:%M')} (#{time_ago_in_words(l[:max].in_time_zone)} ago)" : ''
You need to be logged in to leave comments. Login now