diff --git a/app/views/tasks/list.html.erb b/app/views/tasks/list.html.erb new file mode 100644 --- /dev/null +++ b/app/views/tasks/list.html.erb @@ -0,0 +1,17 @@ +<%= user_title_bar(@user) %> + +
+ Task Listing: + + <% @problems.each do |problem| %> + <% if problem.description!=nil %> + <%= "[#{problem.full_name}]" %> + <% else %> + <%= "[#{problem.full_name}]" %> + <% end %> + <% end %> +
+ + +<%= render :partial => 'problem', :collection => @problems %> +
diff --git a/app/views/tasks/list.html.haml b/app/views/tasks/list.html.haml deleted file mode 100644 --- a/app/views/tasks/list.html.haml +++ /dev/null @@ -1,13 +0,0 @@ -= user_title_bar(@user) - -.task-menu - %b Task Listing: - - - @problems.each do |problem| - - if problem.description!=nil - %a{:href => "\##{problem.name}"}= "[#{problem.full_name}]" - - else - = "[#{problem.full_name}]" - -%table.taskdesc - = render :partial => 'problem', :collection => @problems