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

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

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