Creating a Budget Web App with Django
Creating a expense tracker with Django and PostgreSQL.
If you have no idea how to get started with a Django project, I created a small tutorial to walk through the steps of downloading, installing and running your first Django server and the link to it is here. The final product will look something like this:
The full code can be found in my GitHub at:
Django Models
The models in Django are the source of information about your data. You create classes that contain the essential fields and behaviors of the data you’re storing. The basics of the models:
- Each model is a Python class that is a subclass of django.db.models.Model
- Each attribute of the model represents a database field.
- Each model class represent their own database table.