Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
added contest model
Commit Description:
added contest model
< h1 > Problem stat: <%= @problem . name %> </ h1 >
< i > This is just a hack. Really not efficient. </ i >< br />< br />
<% if @submissions != nil %>
< table class = "info" >
< tr class = "info-head" >
< th > login </ th >
< th > name </ th >
< th > submitted_at </ th >
< th > points </ th >
< th > comment </ th >
</ tr >
<% count = 0 %>
<% @submissions . each do | sub | %>
< tr class = " <%= ( count % 2 == 0 ) ? "info-even" : "info-odd" %> " >
< td > <%= sub . user . login %> </ td >
< td > <%= sub . user . full_name if sub . user %> </ td >
< td > <%= sub . submitted_at . to_s %> </ td >
< td > <%= sub . points %> </ td >
< td >< div style = "font-family: monospace" > <%= sub . grader_comment %> </ div ></ td >
</ tr >
<% count += 1 %>
<% end %>
</ table >
<% else %>
No submission
<% end %>
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings