# Lab - Afternoon Keep Building the Holiday App ## Warm Up - Add a `td` element to the table that shows the number of likes - Add a `td` element to the table that has an image of balloons, when you click it, the number of likes go up - In the assets folder is an image `two-balloon-icons-68911.png` Hints: - Create a new function with an `$http` call that specifically updates just the likes  ## More Challenging - Add a `td` element to the table that has an image of a pencil, when you click it, a modal will appear with a form to edit - In the assets folder is an image `simpleiconDOTcom-pen-15-64x64.png`  **Hints** - Starter Form - this should give you a nice layout that plays well with the CSS already in place. Note when the class `edit` is present it shows the modal, when the class `edit` is removed the modal disappears. - There is also another css class `.dim` which when added to the `body`, will dim the apperance of the `body`, which you can also toggle with angular `ng-class` - if you go this route it is recommended you set a variable to true/false and create a function that allows you to toggle this value. ```html