https://github.com/rhildred/midtermcomplete
The midterm. Completed in more time than you had.
https://github.com/rhildred/midtermcomplete
Last synced: about 1 year ago
JSON representation
The midterm. Completed in more time than you had.
- Host: GitHub
- URL: https://github.com/rhildred/midtermcomplete
- Owner: rhildred
- Created: 2017-03-21T02:34:15.000Z (over 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2017-03-22T22:31:47.000Z (over 9 years ago)
- Last Synced: 2024-12-26T11:14:28.313Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://rhildred.github.io/midtermComplete/www
- Size: 2.84 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prog8110MidtermStart
W2017 starter files for midterm
1) change the 3 tabs to be: (.5 mark)
a) expense list
b) add expense
c) categories
2) change the icons appropriately [using this link](http://ionicons.com/)(.5 mark)
3) create a form to add an expense with the following fields: (1 mark)
a) an amount
b) a category to be selected from
i) food
ii) lodging
iii) clothing and personal
iv) entertainment
c) a description
4) create a database [using this example](https://github.com/rhildred/indexdbexample) and connect the form to it (1 mark)
5) create a page that lists the expenses from the database (1 mark)
6) create a page that graphs the expenses by category [using this example](https://github.com/rhildred/ionicgraph) (1 mark)
*hint `SELECT category, SUM(amount) AS expense FROM expenses GROUP BY 1`