Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions homework2/feedback.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

**Homework Feedback for Cat App**


Functionality:

All tasks completed! Awesome job, and your app appears to be bug free.

Completion: (20/20)

Bug Free: (10/10)


Quality:

Your code was well organized and commented! It was very clear and readable.
You followed good coding practices throughout!

Good Coding Practices: (10/10)

Readability: (10/10)


Summary:
It was very sad when the cats were murdered, but great job on this homework! Everything is functional and well written. You seem to have had a great understanding of how everything fits together. (50/50).
4 changes: 4 additions & 0 deletions homework2/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,7 @@ module.exports.createCat = createCat;
module.exports.listCats = listCats;
module.exports.deleteCat = deleteCat;
module.exports.sortCats = sortCats;



// Great use of sort functions! Your code is clear, well commented, and readable!
3 changes: 3 additions & 0 deletions homework2/views/cats.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@
{{#if deleted}}
<p>{{deleted.name}} age {{deleted.age}} was murdered</p>
{{/if}}


{{!-- {{ This templating was nice! Keeping everything in a table was good visually.}} --}}