Show More
Commit Description:
DRY problem select
Commit Description:
DRY problem select
References:
File last commit:
Show/Diff file:
Action:
app/views/tasks/list.html.erb
| 19 lines
| 446 B
| text/plain
| TextLexer
|
|
r96 | <%= 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"> | ||||
|
r132 | |||
|
r135 | <%= render :partial => 'overview' %> | ||
|
r96 | <%= render :partial => 'problem', :collection => @problems %> | ||
</table> | ||||