Used https://github.com/joepk90/django-example-app as a base. Includes an accounts app to handle + djoser to handle authentication
To prevent storing decimals in the database, the PositiveSmallIntegerField The number field has the folliwing min/max values:
- min 0
- max: 1000
Clients should convert the the number to decimal to represent a decimal value between 1-10
console.log((999/100).toFixed(2));
# output 9.99