Description:
renamed .rhtml files
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r323:e2ba68cb1d2f - - 2 files changed: 24 inserted, 24 deleted

@@ -0,0 +1,24
1 + <% for column in Problem.content_columns %>
2 + <p>
3 + <b><%= column.human_name %>:</b>
4 + <%=h @problem.send(column.name) %>
5 + </p>
6 + <% end %>
7 +
8 + <p>
9 + <b>Description:</b><br/>
10 + <% if @problem.description!=nil %>
11 + <% if @problem.description.markdowned %>
12 + <%= markdown(@problem.description.body) %>
13 + <% else %>
14 + <pre>
15 + <%= @problem.description.body %>
16 + </pre>
17 + <% end %>
18 + <% else %>
19 + (not available)
20 + <% end %>
21 + </p>
22 +
23 + <%= link_to 'Edit', :action => 'edit', :id => @problem %> |
24 + <%= link_to 'Back', :action => 'list' %>
deleted file
You need to be logged in to leave comments. Login now