-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Our swadges team needs to get the emails of everyone who's kicked in at least at the Supporter level. This report lets you choose the kick-in level you get the emails of, plus has an optional option to only pull emails from attendees who agreed to receive marketing emails.
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{% extends "base.html" %}{% set admin_area=True %} | ||
{% block title %}Email addresses by interest{% endblock %} | ||
{% block content %} | ||
|
||
<h1>Emails by Interest</h1> | ||
|
||
Use this page to generate a CSV file of emails of people who donated at a certain kick-in level at | ||
{{ c.EVENT_NAME }}.<br/><br/> | ||
|
||
<form action="emails_by_kickin_csv"> | ||
Generate list of emails from attendees with one of the following kick-in levels or more:<br/> | ||
<select name="amount_extra"> | ||
{{ options(c.DONATION_TIER_OPTS) }} | ||
</select><br/> | ||
<label><input type="checkbox" name="only_can_spam" value="1"/> | ||
I want to use these emails for marketing campaigns.</label> | ||
<br/><input name="submit" type="submit"/><br/> | ||
</form> | ||
|
||
{% endblock %} |