-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove references to consent form notarization
- Loading branch information
Showing
5 changed files
with
82 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
magprime/templates/emails/reg_workflow/group_confirmation.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<html> | ||
<head></head> | ||
<body> | ||
|
||
Your {{ group.is_dealer|yesno(c.DEALER_REG_TERM + ",group") }} ({{ group.name }}) has been preregistered for | ||
{{ c.EVENT_NAME }} this coming {{ event_dates() }} and your payment of {{ (group.amount_paid / 100)|format_currency }} has been received. | ||
|
||
{% if group.unregistered_badges %} | ||
<br/> <br/> | ||
Some of your badges are not yet assigned to a specific person. If you assign these badges | ||
now then it will take much less time for their owners to pick them up at the event. Preassigning | ||
badges also allows individual members of your group to preorder merch or donate | ||
extra money. You may preassign your badges on your | ||
<a href="{{ c.URL_BASE }}/preregistration/group_members?id={{ group.id }}">group management page</a>. | ||
The individual registration links on the group management page can be filled out by you, or distributed | ||
to your group members for them to fill out themselves. | ||
|
||
<b>Your</b> registration confirmation number is {{ group.leader_id }}, and you can update your information, preorder merch, | ||
or donate extra money <a href="{{ c.URL_BASE }}/preregistration/confirm?id={{ group.leader_id }}">here</a>. | ||
|
||
{% if not group.is_dealer %} | ||
<br/> <br/> | ||
Please email your {{ c.EVENT_NAME }} contact regarding adding badges to your group. You may be asked to pay for the extra badges after the badges are added. | ||
{% endif %} | ||
{% endif %} | ||
|
||
{% if c.CONSENT_FORM_URL and group.leader.age_group_conf['consent_form'] %} | ||
<br/> <br/> | ||
Because you are under 18, you must bring a <a href="{{ c.CONSENT_FORM_URL }}">signed parental | ||
consent form</a> to be granted admission to {{ c.EVENT_NAME }}. | ||
<br/> <br/> | ||
If you are over 18, update your date of birth on your | ||
<a href="{{ c.URL_BASE }}/preregistration/confirm?id={{ group.leader.id }}">badge confirmation page</a>. | ||
{% endif %} | ||
|
||
<br/> <br/> | ||
Badges are not mailed out before the event, so your group members may pick up their badge at Registration | ||
when they arrive at {{ c.EVENT_NAME }}. Inform your group to bring a photo ID{{ c.EXTRA_CHECKIN_DOCS }} to the registration | ||
desk, where they'll be provided with their badge. If anyone in your group pre-ordered a t-shirt or other merch package, | ||
they can pick those up at our merchandise booth. The location and | ||
hours of Registration and merchandise booth will be emailed prior to the event. | ||
<br/> <br/> | ||
You can always <a href="{{ c.URL_BASE }}/preregistration/group_members?id={{ group.id }}">use this link</a> to manage your group. | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{% if attendee.staffing and not attendee.assigned_depts %} | ||
<br><br> | ||
Thanks for your interest in volunteering! | ||
{% if attendee.paid == c.HAS_PAID %} | ||
Now that we've received your payment | ||
{% elif attendee.paid == c.PAID_BY_GROUP %} | ||
As soon as we get a chance, | ||
{% else %} | ||
After we receive your payment | ||
{% endif %} | ||
we will review your request to volunteer at {{ c.EVENT_NAME }}. If you are selected, we will email further | ||
instructions about your department assignment and how to sign up for shifts. | ||
{% endif %} | ||
|
||
{% if c.CONSENT_FORM_URL and attendee.age_group_conf['consent_form'] %} | ||
<br><br> | ||
Our records indicate that you are under the age of 18, and as such, you | ||
will need a signed parental consent form. If a parent/legal guardian will | ||
be present at {{ c.EVENT_NAME }}, then they can sign the consent form when | ||
you pick up your badge at Registration in Expo Hall E. If a parent/legal | ||
guardian will not be at the event, the form may be brought pre-signed. | ||
You may find the form <a href="{{ c.CONSENT_FORM_URL }}">by clicking here</a>. | ||
<br><br> | ||
If you are actually over 18, please update your age in our | ||
<a href="{{ c.URL_BASE }}/preregistration/confirm?id={{ attendee.id }}">database here</a> | ||
prior to picking up your badge. | ||
{% endif %} | ||
|
||
{% if c.CODE_OF_CONDUCT_URL %} | ||
<br><br> | ||
Registered attendees agree to the <a href="{{ c.CODE_OF_CONDUCT_URL }}">{{ c.EVENT_NAME }} code of conduct</a> by picking up their badge. | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters