Changeset - da1ac265d27c
[Not reviewed]
0 3 0
Christopher Neugebauer - 7 years ago 2016-09-21 00:46:52
chrisjrn@gmail.com
Adds dependency on registration-stripe
3 files changed with 15 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -158,2 +158,6 @@ INSTALLED_APPS = [
 

	
 
    # Registrasion-stipe
 
    "pinax.stripe",
 
    "registripe",
 

	
 
    #admin - required by registrasion ??
...
 
@@ -225,2 +229,5 @@ PINAX_BOXES_HOOKSET = "pinaxcon.hooks.PinaxBoxesHookSet"
 

	
 
PINAX_STRIPE_PUBLIC_KEY = os.environ.get("STRIPE_PUBLIC_KEY", "your test public key")
 
PINAX_STRIPE_SECRET_KEY = os.environ.get("STRIPE_SECRET_KEY", "your test secret key")
 

	
 
# Registrasion Attendee profile model
pinaxcon/urls.py
Show inline comments
...
 
@@ -26,2 +26,8 @@ urlpatterns = [
 

	
 
    # Demo payment gateway and related features
 
    url(r"^register/pinaxcon/", include("pinaxcon.registrasion.urls")),
 

	
 
    # Demo payment gateway and related features
 
    url(r"^register/payments/", include("registripe.urls")),
 

	
 
    # Required by registrasion
...
 
@@ -30,5 +36,2 @@ urlpatterns = [
 

	
 
    # Demo payment gateway and related features
 
    url(r"^register/pinaxcon/", include("pinaxcon.registrasion.urls")),
 

	
 
    url(r"^boxes/", include("pinax.boxes.urls")),
requirements.txt
Show inline comments
...
 
@@ -15,3 +15,4 @@ coverage==4.0.3
 
# Registrasion
 
registrasion==0.1.0
 
https://github.com/chrisjrn/registrasion/tarball/master#egg=registrasion
 
https://github.com/pinax/symposion/tarball/ad81810#egg=symposion
 
https://github.com/chrisjrn/registrasion-stripe/tarball/master#egg=registrasion-stripe
0 comments (0 inline, 0 general)