From 2b9b4a7331df087593caadf199db1c180ad816a8 Mon Sep 17 00:00:00 2001
From: Andromeda Yelton
Date: Mon, 14 May 2012 13:42:34 -0400
Subject: [PATCH] share links in pledge_complete need to include url base
---
frontend/templates/pledge_complete.html | 4 ++--
frontend/templates/rh_tools.html | 2 +-
frontend/views.py | 1 +
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/frontend/templates/pledge_complete.html b/frontend/templates/pledge_complete.html
index 7d0b709b..4f5c04bd 100644
--- a/frontend/templates/pledge_complete.html
+++ b/frontend/templates/pledge_complete.html
@@ -34,8 +34,8 @@
Copy/paste this into your site:
diff --git a/frontend/templates/rh_tools.html b/frontend/templates/rh_tools.html
index 6635ab25..df6a3287 100644
--- a/frontend/templates/rh_tools.html
+++ b/frontend/templates/rh_tools.html
@@ -148,7 +148,7 @@ Needs to be written. What would you find helpful in a social media toolkit? Here are the standard rewards:
-- Any level — The unglued ebook delivered to your inbox
+- Any level ($1 minimum) — The unglued ebook delivered to your inbox
- $25 — Your username under "supporters" in the acknowledgements section
- $50 — Your name & profile link under "benefactors"
- $100 — Your name, profile link, & profile tagline under "bibliophiles"
diff --git a/frontend/views.py b/frontend/views.py
index 579c41ad..9d562d78 100755
--- a/frontend/views.py
+++ b/frontend/views.py
@@ -843,6 +843,7 @@ class PledgeCompleteView(TemplateView):
context["faqmenu"] = "complete"
context["works"] = works
context["works2"] = works2
+ context["domain"] = Site.objects.get_current().domain
# generate notices with same context used for user page
notification.queue([transaction.user], "pledge_you_have_pledged", {'transaction': transaction, 'campaign': campaign, 'site': Site.objects.get_current(), 'work': work}, True)