├── README.md ├── cost ├── cost-1.png ├── cost-2.png ├── cost-3.png ├── cost-4.png ├── cost-5.png ├── cost-6.png ├── cost-7.png └── cost-8.png └── my-cost-note.py /README.md: -------------------------------------------------------------------------------- 1 | # my-cost-note 2 | A daily cost management system using django: https://my-cost-note.herokuapp.com/ 3 | 4 | Here is a real life application build with django, bootstrap-4, ajax. 5 | 6 | This application will manage your all cost things automatically. 7 | 8 | You/Your partner will be able to: 9 | ``` 10 | 1. Add cost 11 | 2.Search cost 12 | 3.See total cost till now 13 | 4.See total cost of current month 14 | 5.Chat with your partners 15 | 6.Restriction to other people 16 | 7.Download pdf file of cost list 17 | 8.And a lot.. 18 | ``` 19 | 20 | I need to have an application like this. And finally i make it. It's live now. You can test also. 21 | 22 | Cheers! 23 | ### N.B: If you want to donate for this project please email: revelyusuf109@gmail.com 24 | 25 | ## Tools: 26 | ``` 27 | 1.Django 28 | 2.Bootstrap-4 29 | 3.Postgres 30 | 4.JQuery 31 | ``` 32 | 33 | 34 | ![Screenshot](cost/cost-1.png) 35 | ![Screenshot](cost/cost-2.png) 36 | ### After sucessfull login you are redirected to your current months cost list. 37 | ![Screenshot](cost/cost-3.png) 38 | ### You can search by months also here. 39 | ![Screenshot](cost/cost-4.png) 40 | ### You can restricted users to put cost entries. 41 | ![Screenshot](cost/cost-5.png) 42 | ![Screenshot](cost/cost-6.png) 43 | ### You can add your cost here like this. 44 | ![Screenshot](cost/cost-7.png) 45 | ### You can start a chat conversation with your partner(wife/cost-partner). 46 | ![Screenshot](cost/cost-8.png) 47 | 48 | ## If you found this usefull don't forget to hit a star :) 49 | -------------------------------------------------------------------------------- /cost/cost-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-1.png -------------------------------------------------------------------------------- /cost/cost-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-2.png -------------------------------------------------------------------------------- /cost/cost-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-3.png -------------------------------------------------------------------------------- /cost/cost-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-4.png -------------------------------------------------------------------------------- /cost/cost-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-5.png -------------------------------------------------------------------------------- /cost/cost-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-6.png -------------------------------------------------------------------------------- /cost/cost-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-7.png -------------------------------------------------------------------------------- /cost/cost-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abu-yusuf-dev/my-cost-note/b6724f6ae6f5bd47b7c98d2db2740071f6e2601b/cost/cost-8.png -------------------------------------------------------------------------------- /my-cost-note.py: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------