Show More
Commit Description:
fix pdf to use inline display of browsers
Commit Description:
fix pdf to use inline display of browsers
References:
File last commit:
Show/Diff file:
Action:
app/views/tasks/_problem.html.erb
| 20 lines
| 477 B
| text/plain
| TextLexer
|
|
r92 | <tr class="name"> | ||
<td> | ||||
<a name="<%= problem.name %>"></a> | ||||
|
r91 | <%= "#{problem.full_name} (#{problem.name})" %> | ||
|
r92 | </td> | ||
</tr> | ||||
<tr> | ||||
<% td_class = (problem_counter%2==0) ? "desc-even" : "desc-odd" %> | ||||
<td class="<%= td_class %>"> | ||||
<% if problem.description!=nil %> | ||||
<% if problem.description.markdowned %> | ||||
<%= markdown(problem.description.body) %> | ||||
<% else %> | ||||
<%= problem.description.body %> | ||||
<% end %> | ||||
|
r91 | <% else %> | ||
(not available) | ||||
<% end %> | ||||
|
r92 | </td> | ||
</tr> | ||||