From 50230668961a0100e3368eea9df56f729037e6ae 2017-10-10 01:37:31 From: Christopher Neugebauer Date: 2017-10-10 01:37:31 Subject: [PATCH] Adds “please fill out your own registration” information. --- diff --git a/pinaxcon/templates/registrasion/guided_registration.html b/pinaxcon/templates/registrasion/guided_registration.html new file mode 100644 index 0000000000000000000000000000000000000000..86f718e6672d68330f30e8b4e060fe16fe3d928f --- /dev/null +++ b/pinaxcon/templates/registrasion/guided_registration.html @@ -0,0 +1,18 @@ +{% extends "registrasion/guided_registration_.html" %} +{% comment %} + Blocks that you can override: + + - discounts_intro + - products_intro + +{% endcomment %} + +{% block content %} + + {% if current_step == 1 %} +
Attendees should fill out their own registration form.
When you complete the form, you'll receive a link that you can pass on to accounts staff if you need someone to pay on your behalf.
+ {% endif %} + + {{ block.super }} + +{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/attend.html b/pinaxcon/templates/static_pages/attend/attend.html index 8a31694f5053f948211a702e9ebd24a07c930790..2a8954ee93e5aa0c1920635a567dea1a045af6b6 100644 --- a/pinaxcon/templates/static_pages/attend/attend.html +++ b/pinaxcon/templates/static_pages/attend/attend.html @@ -18,6 +18,8 @@

To buy a ticket, create an account, and go to the dashboard. If you've already bought a ticket, you can check out our information on where to stay if you want to come up for the weekend, and how to get here.

+

Attendees should fill out their own registration form. When you complete the form, you'll receive a link that you can pass on to accounts staff if you need someone to pay on your behalf.

+
Buy a Ticket
diff --git a/pinaxcon/views.py b/pinaxcon/views.py index 4fe6afc73d347e2ce8039ba1ca97cc3876ad20dc..6d6210d8ad5a15ecdf9f8e5550f7aa1f7273fbf6 100644 --- a/pinaxcon/views.py +++ b/pinaxcon/views.py @@ -35,6 +35,10 @@ def buy_ticket(request): print(dir(request.user)) if not request.user.is_authenticated(): - messages.warning(request, 'To buy a ticket, either create an account, or log in.') + messages.warning(request, + '''To buy a ticket, either create an account, or log in. + Attendees should fill out their own registration. + You will receive a payment link that you can pass to accounts + staff, if required. ''') return redirect("/dashboard")