diff --git a/app/views/problems/show.rhtml b/app/views/problems/show.rhtml deleted file mode 100644 --- a/app/views/problems/show.rhtml +++ /dev/null @@ -1,24 +0,0 @@ -<% for column in Problem.content_columns %> -

- <%= column.human_name %>: - <%=h @problem.send(column.name) %> -

-<% end %> - -

-Description:
- <% if @problem.description!=nil %> - <% if @problem.description.markdowned %> -<%= markdown(@problem.description.body) %> - <% else %> -

-<%= @problem.description.body %>
-
- <% end %> - <% else %> - (not available) - <% end %> -

- -<%= link_to 'Edit', :action => 'edit', :id => @problem %> | -<%= link_to 'Back', :action => 'list' %>