Aashay Amballi

Results 3 issues of Aashay Amballi

Hi, thanks for this library, Can anyone please demonstrate how to use this in a react project with Django/Django Rest Framework backend?

help wanted
question

after upgrading django-money package to the latest version from 1.3.1 to 3.4.1 I noticed an issue with the migration generated for the MoneyField. Currently, in our case, the field is...

I have this simple model: ``` class Book(models.Model): title = models.CharField(max_length=100) author = models.ForeignKey( "books.Author", verbose_name=_("Author of the book"), on_delete=models.CASCADE ) publication_date = models.DateField() isbn = models.CharField(max_length=13) pages = models.IntegerField()...