Implement the Success page of the order

This commit is contained in:
amalelshihaby 2021-08-02 11:24:19 +02:00
commit 030a0cd501
13 changed files with 328 additions and 47 deletions

View file

@ -82,7 +82,7 @@ class Payment(models.Model):
choices = (
('withdraw', 'Withdraw Money'),
('deposit', 'Deposit Money')
), null=False, blank=False, default="send")
), null=False, blank=False, default="deposit")
notes = models.TextField(default="", null=True, blank=True)