2016-09-21 00:24:26 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import models
|
2016-09-21 03:16:59 +00:00
|
|
|
from registrasion.models import commerce
|
|
|
|
from pinax.stripe.models import Charge
|
2016-09-21 00:24:26 +00:00
|
|
|
|
2016-09-21 03:16:59 +00:00
|
|
|
|
|
|
|
class StripePayment(commerce.PaymentBase):
|
|
|
|
|
|
|
|
charge = models.ForeignKey(Charge)
|