Show More
Commit Description:
DRY problem select
Commit Description:
DRY problem select
File last commit:
Show/Diff file:
Action:
app/views/tasks/list.html.erb | 19 lines | 446 B | text/plain | TextLexer |
<%= user_title_bar(@user) %>
<div class="task-menu">
<b>Task Listing:</b>
<% @problems.each do |problem| %>
<% if problem.description!=nil %>
<a href="#<%= problem.name %>"><%= "[#{problem.full_name}]" %></a>
<% else %>
<%= "[#{problem.full_name}]" %>
<% end %>
<% end %>
</div>
<table class="taskdesc">
<%= render :partial => 'overview' %>
<%= render :partial => 'problem', :collection => @problems %>
</table>