blob: cb7473e22d8e0e102217977c7b14dbb5054ee019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#%]
[% USE Bugzilla %]
[% cgi = Bugzilla.cgi %]
::
Name:
[%+ cgi.param('name') %]
Email Address:
[%+ cgi.param('email') %]
Role in relation to event:
[%+ cgi.param('role') %]
::
Event Name:
[%+ cgi.param('event') %]
Start Date:
[%+ cgi.param('start_date') %]
End Date:
[%+ cgi.param('end_date') %]
Event Location:
[%+ cgi.param('location') || "-" %]
Venue:
[%+ cgi.param('venue') || "-" %]
Weblink:
[%+ cgi.param('link') || "-" %]
Expected Attendees:
[%+ cgi.param('attendees') || "-" %]
Event Description:
[%+ cgi.param('desc') || "-" %]
Primary Audience:
[%+ cgi.param('audience') || "-" %]
Relevant Products:
[% "\n* Firefox OS" IF cgi.param('product-fxos') %]
[% "\n* Firefox Web Browser" IF cgi.param('product-fx') %]
[% "\n* Webmaker" IF cgi.param('product-webmaker') %]
[% "\n* Persona" IF cgi.param('product-persona') %]
[% "\n* Marketplace" IF cgi.param('product-marketplace') %]
[% "\n* Thunderbird" IF cgi.param('product-tb') %]
[% "\n* The Free and Open Web" IF cgi.param('product-fow') %]
[% "\n* Other: " _ cgi.param('product-other-text') IF cgi.param('product-other') %]
::
Requests:
[% "\n* Keynote Presentation" IF cgi.param('request-keynote') %]
[% "\n* Talk Presentation" IF cgi.param('request-talk') %]
[% "\n* Workshop" IF cgi.param('request-workshop') %]
[% "\n* Sponsorship" IF cgi.param('request-sponsorship') %]
[% "\n* Other: " _ cgi.param('request-other-text') IF cgi.param('request-other') %]
Suggested sponsorship amount/level:
[%+ cgi.param('sponsorship-suggestion') || "-" %]
Already Registered Mozillians:
[%+ cgi.param('mozillians') || "-" %]
Requesting A Specific Person:
[%+ cgi.param('specific') || "-" %]
Alternative Person:
[%+ cgi.param('fallback') || "-" %]
Anything Else:
[%+ cgi.param('else') || "-" %]
|