update contributer form responses

This commit is contained in:
James Long 2012-03-28 18:51:11 -04:00
Родитель 37118a24c2
Коммит c723ee3305
5 изменённых файлов: 37 добавлений и 16 удалений

Просмотреть файл

@ -59,5 +59,4 @@ class ContributeForm(forms.Form):
privacy = forms.BooleanField(widget=PrivacyWidget)
newsletter = forms.BooleanField(required=False)
interest = forms.ChoiceField(choices=INTEREST_CHOICES)
comments = forms.CharField(widget=forms.widgets.Textarea(attrs={'rows':'', 'cols':''}),
required=False)
comments = forms.CharField(widget=forms.widgets.Textarea(attrs={'rows':'', 'cols':''}))

Просмотреть файл

@ -1,19 +1,16 @@
Hi there,
Hello,
Thank you for your inquiry about getting involved with the Mozilla Student Reps program. To learn more about the program and how to start representing Mozilla at your school, click here:
https://wiki.mozilla.org/ReMo/Student_Reps
Before you can get started, please complete the Student Reps registration form:
Thank you for your inquiry about getting involved with the Mozilla Student Reps program. To learn how to start representing Mozilla at your college or university, please sign-up here:
http://www.mozilla.org/en-US/newsletter/studentreps
Once you submit the form, you are considered an official Student Rep and are able to start promoting Firefox and Mozilla products at your college or university. You will receive a newsletter twice monthly with important program updates and campaigns so make sure to look out for that.
On the registration form, please opt-in to the newsletter which includes important program news and campaign updates.
We look forward to keeping in touch through the channels listed on the Student Reps program wiki.
Once you complete the registration form, you are considered an official Student Rep. You should receive a confirmation email with instructions to join the next Student Reps 101 online training.
Good luck -- and thank you for representing Mozilla at your school!
We look forward to keeping in touch with you through the Student Reps channels listed on the website: http://studentreps.mozilla.org
Jason Haas
Mozilla | Community Manager (Students)
Good luck -- and thank you for promoting Mozilla and Firefox at your school.
Mozilla Student Reps
studentreps@mozilla.com

Просмотреть файл

@ -0,0 +1,14 @@
Thanks for offering to help us build Mozilla's websites.
Start by joining us in #webdev on IRC. http://mzl.la/irc_getting_started will help you get connected, and http://mzl.la/webdev_irc lists some WebDev channels.
Next register an account on Bugzilla. Bugzilla can be daunting, so check out http://mzl.la/bugzilla_for_humans (15m video HIGHLY recommended).
Now look for a WebDev mentored bug in http://mzl.la/webdev_mentored_bugs and contact the mentor - over IRC, email, or comment on the bug.
Finally, with your mentor, fork the github repository for the bug's website and you're ready to start coding.
This is a lot of information, so let me know if you have any questions as you get started.
Regards,
Luke

Просмотреть файл

@ -51,15 +51,19 @@
<ul class="errorlist container" id="help-email-errors">
{% if form.email.errors %}
<li>Please enter a valid email address</li>
<li>Please enter a valid email address.</li>
{% endif %}
{% if form.privacy.errors %}
<li>You must agree to the privacy policy</li>
<li>You must agree to the privacy policy.</li>
{% endif %}
{% if form.interest.errors %}
<li>Please select an interest</li>
<li>Please select an area of interest.</li>
{% endif %}
{% if form.comments.errors %}
<li>Please tell us more about your interests.</li>
{% endif %}
</ul>
{% endif %}

Просмотреть файл

@ -35,6 +35,11 @@ def contribute_send(data):
'Thunderbird': 'tb-kb@mozilla.com',
'Students': 'studentreps@mozilla.com',
'Research': 'diane+contribute@mozilla.com',
'Design': 'creative@mozilla.com',
'Security': 'security@mozilla.com',
'Docs': 'eshepherd@mozilla.com',
'Drumbeat': 'drumbeat@mozilla.com',
'Browser Choice': 'isandu@mozilla.com',
'IT': 'cshields@mozilla.com',
'Marketing': 'cnovak@mozilla.com',
'Add-ons': 'atsay@mozilla.com'
@ -72,6 +77,7 @@ def contribute_autorespond(request, data):
'Thunderbird': 'jzickerman@mozilla.com',
'Accessibility': 'jay@jaygarcia.com',
'Firefox Suggestions': 'jay@jaygarcia.com',
'Webdev': 'lcrouch@mozilla.com',
' ': 'dboswell@mozilla.com'
}
@ -83,6 +89,7 @@ def contribute_autorespond(request, data):
'Students': 'emails/students.txt',
'Documentation': 'emails/documentation.txt',
'Firefox Suggestions': 'emails/suggestions.txt',
'Webdev': 'emails/webdev.txt',
' ': 'emails/other.txt'
}