diff options
author | Byron Jones <glob@mozilla.com> | 2014-09-23 05:41:17 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-09-23 05:41:17 +0200 |
commit | 7a7013402fb30e8777bc09fb9971651392e65ea1 (patch) | |
tree | ccdcff1fbe901d08afbf157ce47c255241a66e6c /extensions/BMO/template/en/default/global | |
parent | 9773ddfe2f9da1d72843b0f5fb7476f3bf4995d2 (diff) | |
download | bugzilla-7a7013402fb30e8777bc09fb9971651392e65ea1.tar.gz bugzilla-7a7013402fb30e8777bc09fb9971651392e65ea1.tar.xz |
Bug 1037663: Make custom bug entry forms more discoverable
Diffstat (limited to 'extensions/BMO/template/en/default/global')
-rw-r--r-- | extensions/BMO/template/en/default/global/choose-product.html.tmpl | 1 | ||||
-rw-r--r-- | extensions/BMO/template/en/default/global/redirect.html.tmpl | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/extensions/BMO/template/en/default/global/choose-product.html.tmpl b/extensions/BMO/template/en/default/global/choose-product.html.tmpl index 448226fbf..eb7581d4e 100644 --- a/extensions/BMO/template/en/default/global/choose-product.html.tmpl +++ b/extensions/BMO/template/en/default/global/choose-product.html.tmpl @@ -194,6 +194,7 @@ by changing your <a href="userprefs.cgi?tab=settings">preferences</a>.</p> src="extensions/BMO/web/images/guided.png" width="16" height="16" border="0" align="absmiddle"></a> <a id="guided_link" href="enter_bug.cgi?format=guided" >Switch to the [% terms.Bugzilla %] Helper</a> + | <a href="page.cgi?id=custom_forms.html">Custom [% terms.bug %] entry forms</a> </div> [% PROCESS global/footer.html.tmpl %] diff --git a/extensions/BMO/template/en/default/global/redirect.html.tmpl b/extensions/BMO/template/en/default/global/redirect.html.tmpl new file mode 100644 index 000000000..67561d8fa --- /dev/null +++ b/extensions/BMO/template/en/default/global/redirect.html.tmpl @@ -0,0 +1,25 @@ +[%# 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. + #%] + +<!doctype html> +<html> +<head> + <title>Moved</title> + <meta http-equiv="refresh" content="0;URL=[% url FILTER none %]"> + <style> + body { + font-family: sans-serif; + font-size: small; + background: url('extensions/BMO/web/images/background.png') repeat-x; + } + </style> +</head> +<body> + Redirecting to <a href="[% url FILTER none %]">[% url FILTER html %]</a> +</body> +</html> |