MarkO
MarkO

Reputation: 795

Django credit accounts example

Is there a Django package that handlers credits and accounts. For example, a user needs 3 credits to send an email, etc I'm looking for examples of models and functions needed for such I thing. I cannot find a package, so does anyone know of any apps in Django that do something similar?

Thanks.

Upvotes: 2

Views: 430

Answers (1)

Glyn Jackson
Glyn Jackson

Reputation: 8354

Have a look at django-oscar-accounts it keeps track of transactions and credit accounts. Could be adapted for you use, or you could draw ideas from the model in the link I have posted. Hope this helps.

Upvotes: 2

Related Questions