Changeset - dd6aaf9b285c
[Not reviewed]
0 2 1
Christopher Neugebauer - 6 years ago 2017-10-11 00:50:49
chrisjrn@gmail.com
Adds “please fill out your own registration” information.
3 files changed with 25 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/guided_registration.html
Show inline comments
 
new file 100644
 
{% extends "registrasion/guided_registration_.html" %}
 
{% comment %}
 
  Blocks that you can override:
 

	
 
  - discounts_intro
 
  - products_intro
 

	
 
{% endcomment %}
 

	
 
{% block content %}
 

	
 
  {% if current_step == 1 %}
 
    <div class="alert alert-danger"><strong>Attendees should fill out their own registration form</strong>.<br/> 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.</div>
 
  {% endif %}
 

	
 
  {{ block.super }}
 

	
 
{% endblock %}
pinaxcon/templates/static_pages/attend/attend.html
Show inline comments
...
 
@@ -20,2 +20,4 @@
 

	
 
<p><strong>Attendees should fill out their own registration form</strong>. 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.</p>
 

	
 
<br />
pinaxcon/views.py
Show inline comments
...
 
@@ -37,3 +37,7 @@ def buy_ticket(request):
 
    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. ''')
 

	
0 comments (0 inline, 0 general)