Justinzh1/Emunah

View on GitHub
app/views/tasks/show.html.haml

Summary

Maintainability
Test Coverage
.container 
  %h2 All Tasks
  - @tasks.each do |task|
    .well 
      %h3
        = "#" + task.id.to_s + " " 
        = task.title
      %p
        = "Task Description: " + task.notes 
      %p
        = task.completed ? "Completed" : "In Progress"
    
    %br