Show More
Commit Description:
fix destroy button link...
Commit Description:
fix destroy button link (grafted from b75d9cfe4ee0550d574de4c4836ecc36c9354c53)
File last commit:
Show/Diff file:
Action:
app/views/problems/show.html.erb | 24 lines | 518 B | text/plain | TextLexer |
<% 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' %>