From 806f97062f7b45516d7b564b5f943d7353cbd946 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Fri, 12 Aug 2016 20:59:31 -0400 Subject: Re-applying Bug 1292907 to test staging weirdness. --- .../bug/create/create-name-clearance.html.tmpl | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 extensions/BMO/template/en/default/bug/create/create-name-clearance.html.tmpl (limited to 'extensions/BMO/template/en/default/bug/create/create-name-clearance.html.tmpl') diff --git a/extensions/BMO/template/en/default/bug/create/create-name-clearance.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-name-clearance.html.tmpl new file mode 100644 index 000000000..ad143be24 --- /dev/null +++ b/extensions/BMO/template/en/default/bug/create/create-name-clearance.html.tmpl @@ -0,0 +1,178 @@ +[%# 1.0@bugzilla.org %] +[%# The contents of this file are subject to the Mozilla Public + # License Version 1.1 (the "License"); you may not use this file + # except in compliance with the License. You may obtain a copy of + # the License at http://www.mozilla.org/MPL/ + + # + # Software distributed under the License is distributed on an "AS + # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or + # implied. See the License for the specific language governing + # rights and limitations under the License. + # + # The Original Code is the Bugzilla Bug Tracking System. + # + # The Initial Developer of the Original Code is Mozilla Corporation. + # Portions created by Mozilla are Copyright (C) 2008 Mozilla + # Corporation. All Rights Reserved. + # + # Contributor(s): Mark Smith + # Reed Loden + #%] + +[% PROCESS global/variables.none.tmpl %] + +[% inline_style = BLOCK %] +#heading { + font-size: 2em; + font-weight: bold; +} +.row { + padding-bottom: 10px; +} +label.required:before { + content: "* "; + color: red; +} +.required_star { + color: red; +} +[% END %] + +[% inline_javascript = BLOCK %] +$(function() { + $('#other_company_name').on('change', function() { + if ($('#other_company_name').val() == 'Yes') { + $('#other_companies_row').show(); + $('#other_companies').attr('disabled', false); + } else { + $('#other_companies_row').hide(); + $('#other_companies').attr('disabled', true); + } + }); +}); +[% END %] + +[% PROCESS global/header.html.tmpl + title = "Name Clearance" + generate_api_token = 1 + style = inline_style + javascript = inline_javascript +%] + +
Name Clearance
+ +

Note: Do NOT add non-employees to this [% terms.bug %]. To maintain attorney-client privilege + and confidentiality, legal [% terms.bugs %] are only visible to the reporter, the legal team, and the + cc list.

+ +

[ * Required Field ]

+ +
+ + + + + + + + + + + [% IF user.in_group('canconfirm') %] + + [% END %] + +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ + + +
+
+ +
+ +
+ + +
+ +[% PROCESS global/footer.html.tmpl %] -- cgit v1.2.3-24-g4f1b