[%# 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. #%] [% PROCESS global/variables.none.tmpl %] [% PROCESS global/header.html.tmpl title = "Mozilla Reps Budget Request Form" style_urls = [ 'extensions/REMO/web/styles/moz_reps.css' ] javascript_urls = [ 'extensions/REMO/web/js/form_validate.js', 'js/util.js', 'js/field.js' ] yui = [ 'autocomplete' ] %] [% IF user.in_group("mozilla-reps") %] <p>These requests will only be visible to the person who submitted the request, any persons designated in the CC line, and authorized members of the Mozilla Rep team.</p> <script language="javascript" type="text/javascript"> function trySubmit() { var firstname = document.getElementById('firstname').value; var lastname = document.getElementById('lastname').value; var eventpage = document.getElementById('eventpage').value; var shortdesc = 'Budget Request - ' + firstname + ' ' + lastname + ' - ' + eventpage; document.getElementById('short_desc').value = shortdesc; document.getElementById('cc').value = document.getElementById('mentoremail').value; return true; } function validateAndSubmit() { var alert_text = ''; if(!isFilledOut('firstname')) alert_text += "Please enter your first name\n"; if(!isFilledOut('lastname')) alert_text += "Please enter your last name\n"; if(!isFilledOut('profilepage')) alert_text += "Please enter a Mozilla Reps profile page.\n"; if(!isFilledOut('eventpage')) alert_text += "Please enter a event page address.\n"; if(!isFilledOut('mentoremail')) alert_text += "Please enter a valid [% terms.Bugzilla %] email for mentor.\n"; if(!isFilledOut('country')) alert_text += "Please enter a valid value for country.\n"; if(!isFilledOut('budgettotal')) alert_text += "Please enter the total budget for the event.\n"; if(!isFilledOut('service1') || !isFilledOut('cost1')) alert_text += "Please enter at least one service and cost value.\n"; //Everything required is filled out..try to submit the form! if(alert_text == '') { return trySubmit(); } //alert text, stay here on the pagee alert(alert_text); return false; } </script> <h1>Mozilla Reps - Budget Request Form</h1> <p> If your request is Community IT related please file it <a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=Mozilla%20Reps;component=Community%20IT%20Requests">here</a>. </p> <p> <span class="required_star">*</span> - <span class="required_explanation">Required Fields</span> </p> <form method="post" action="post_bug.cgi" id="swagRequestForm" enctype="multipart/form-data" onSubmit="return validateAndSubmit();"> <input type="hidden" name="format" value="remo-budget"> <input type="hidden" name="created-format" value="remo-budget"> <input type="hidden" name="product" value="Mozilla Reps"> <input type="hidden" name="component" value="Budget Requests"> <input type="hidden" name="rep_platform" value="All"> <input type="hidden" name="op_sys" value="Other"> <input type="hidden" name="priority" value="--"> <input type="hidden" name="version" value="unspecified"> <input type="hidden" name="bug_severity" id="bug_severity" value="normal"> <input type="hidden" name="short_desc" id="short_desc" value=""> <input type="hidden" name="cc" id="cc" value=""> <input type="hidden" name="groups" value="mozilla-reps"> <input type="hidden" name="token" value="[% token FILTER html %]"> <table id="reps-form"> <tr class="odd"> <th class="field_label required">First Name:</th> <td> <input type="text" name="firstname" id="firstname" value="" size="40" placeholder="John"> </td> </tr> <tr class="even"> <th class="field_label required">Last Name:</th> <td> <input type="text" name="lastname" id="lastname" value="" size="40" placeholder="Doe"> </td> </tr> <tr class="odd"> <th class="field_label required">Mozilla Reps Profile Page:</th> <td> <input type="text" name="profilepage" id="profilepage" value="" size="40" placeholder="https://reps.mozilla.org/u/JohnDoe"> </td> </tr> <tr class="even"> <th class="field_label required">Event Page:</th> <td> <input type="text" name="eventpage" id="eventpage" value="" size="40" placeholder="https://reps.mozilla.org/e/TestEvent"> </td> </tr> <tr class="odd"> <th class="field_label required">[% terms.Bugzilla %] Email of Your Mentor:</th> <td> [% INCLUDE global/userselect.html.tmpl id => "mentoremail" name => "mentoremail" value => "" size => 40 %] </td> </tr> <tr class="even"> <th class="field_label">Paypal Account Email:</th> <td> <input type="text" name="paypal" id="paypal" value="" size="40" placeholder=""><br> <span style="font-size: smaller;"> * Currently, you CANNOT make payments using other online payment services.</span> </td> </tr> <tr class="odd"> <th class="field_label required">Country You Reside:</th> <td> <input type="text" name="country" id="country" value="" size="40" placeholder="USA"> </td> </tr> <tr class="even"> <th class="field_label">Is advance payment needed?</th> <td> <input type="checkbox" name="advancepayment" id="advancepayment" value="1"> </td> </tr> <tr class="odd"> <td><!--spacer--> </td> <td><!--spacer--> </td> </tr> <tr class="even"> <th colspan="2" class="field_label">Budget Request:</th> </tr> <tr class="even"> <th class="field_label required">Total amount requested in $USD:</th> <td> <input type="text" name="budgettotal" id="budgettotal" value="" size="40"> </td> </tr> <tr class="even"> <th colspan="2" class="field_label">Costs per service:</th> </tr> <tr class="even"> <td colspan="2"> <table> <tr> <th class="field_label required">Service 1:</th> <td><input type="text" id="service1" name="service1" size="30"></td> <th class="field_label required">Cost 1:</th> <td><input type="text" id="cost1" name="cost1" size="30"></td> </tr> <tr> <th class="field_lable">Service 2:</th> <td><input type="text" id="service2" name="service2" size="30"></td> <th class="field_lable">Cost 2:</th> <td><input type="text" id="cost2" name="cost2" size="30"></td> </tr> <tr> <th class="field_lable">Service 3:</th> <td><input type="text" id="service3" name="service3" size="30"></td> <th class="field_lable">Cost 3:</th> <td><input type="text" id="cost3" name="cost3" size="30"></td> </tr> <tr> <th class="field_lable">Service 4:</th> <td><input type="text" id="service4" name="service4" size="30"></td> <th class="field_lable">Cost 4:</th> <td><input type="text" id="cost4" name="cost4" size="30"></td> </tr> <tr> <th class="field_lable">Service 5:</th> <td><input type="text" id="service5" name="service5" size="30"></td> <th class="field_lable">Cost 5:</th> <td><input type="text" id="cost5" name="cost5" size="30"></td> </tr> </table> </td> </tr> <tr class="even"> <th colspan="2" class="field_label">Additional costs:</th> </tr> <tr class="even"> <td colspan="2"> <textarea id="costadditional" name="costadditional" rows="5" cols="50"></textarea> </td> </tr> <tr class="odd"> <td> </td> <td align="right"> <input type="submit" id="commit" value="Submit Request"> </td> </tr> </table> </form> <p style="font-weight:bold;"> Budget requests received less than 3 weeks before the targeted launch date of the event/activity in question will automatically be rejected (exceptions can be made but only with council approval). This 3-week “buffer” guarantees that each budget request undergoes the same thorough selection process. </p> <p> Thanks for contacting us. </p> [% ELSE %] <p>Sorry, you do not have access to this page.</p> [% END %] [% PROCESS global/footer.html.tmpl %]