Re: Implementing accounts

2010-09-28 Thread bruno desthuilliers
On 28 sep, 11:43, mf wrote: > After finishing the core functionalities of my project it's time to > begin with other secundary but important things. > > I've something like the following models.py file: > > class Category(models.Model): >    name = models.CharField(max_length=30) > > class Transac

Implementing accounts

2010-09-28 Thread mf
After finishing the core functionalities of my project it's time to begin with other secundary but important things. I've something like the following models.py file: class Category(models.Model): name = models.CharField(max_length=30) class Transaction(models.Model): name = models.CharFi