diff --git a/common/app/routes/Jobs/components/GoToPayPal.jsx b/common/app/routes/Jobs/components/GoToPayPal.jsx
index 229c86ddb4..cba6075c81 100644
--- a/common/app/routes/Jobs/components/GoToPayPal.jsx
+++ b/common/app/routes/Jobs/components/GoToPayPal.jsx
@@ -2,6 +2,27 @@ import React, { PropTypes } from 'react';
import { Button, Col, Panel, Row } from 'react-bootstrap';
import { contain } from 'thundercats-react';
+const paypalIds = {
+ regular: 'ZVU498PLMPHKU',
+ regularDiscount: '58U7P36W3L2GQ',
+ highlighted: '3YYSTBAMJYTUW',
+ highlightedDiscount: 'QGWTUZ9XEE6EL'
+};
+
+function getPaypalButton(isHighlighted, isNonprofit) {
+ if (isHighlighted) {
+ return isNonprofit ? paypalIds.highlightedDiscount : paypalIds.highlighted;
+ }
+ return isNonprofit ? paypalIds.regularDiscount : paypalIds.regular;
+}
+
+function getPrice(isHighlighted, isNonprofit) {
+ if (isHighlighted) {
+ return isNonprofit ? 150 : 250;
+ }
+ return isNonprofit ? 100 : 200;
+}
+
export default contain(
{
store: 'JobsStore',
@@ -42,6 +63,13 @@ export default contain(
Clicking on the link below will redirect to paypal.
+