Show More
Commit Description:
update heartbeat...
Commit Description:
update heartbeat
add try-to-login-from-other-ip loggin (by printing to stdout)
References:
File last commit:
Show/Diff file:
Action:
app/views/problems/show.html.erb
| 24 lines
| 518 B
| text/plain
| TextLexer
|
|
r323 | <% for column in Problem.content_columns %> | ||
<p> | ||||
<b><%= column.human_name %>:</b> | ||||
<%=h @problem.send(column.name) %> | ||||
</p> | ||||
<% end %> | ||||
<p> | ||||
<b>Description:</b><br/> | ||||
<% if @problem.description!=nil %> | ||||
<% if @problem.description.markdowned %> | ||||
<%= markdown(@problem.description.body) %> | ||||
<% else %> | ||||
<pre> | ||||
<%= @problem.description.body %> | ||||
</pre> | ||||
<% end %> | ||||
<% else %> | ||||
(not available) | ||||
<% end %> | ||||
</p> | ||||
<%= link_to 'Edit', :action => 'edit', :id => @problem %> | | ||||
<%= link_to 'Back', :action => 'list' %> | ||||