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 |
jittat
[web] refactor problem description, some styling...
r92 <tr class="name">
<td>
<a name="<%= problem.name %>"></a>
jittat
[web] more styling for tasks with markdown...
r91 <%= "#{problem.full_name} (#{problem.name})" %>
jittat
[web] refactor problem description, some styling...
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 %>
jittat
[web] more styling for tasks with markdown...
r91 <% else %>
(not available)
<% end %>
jittat
[web] refactor problem description, some styling...
r92 </td>
</tr>