You need to remove =
in this line <%= @project.tasks.each do |task| %>
<ul>
<% @project.tasks.each do |task| %>
<li>
<%= check_box_tag "task_done_#{task.id}", "", task.done %>
<%# <%= link_to task.title, task %>
<%= task.title %>
</li>
<% end %>
</ul>
Small Note:
<% %>
- Executes the code.
<%= %>
- Prints the Output.