diff options
author | lpsolit%gmail.com <> | 2009-05-30 15:26:12 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-05-30 15:26:12 +0200 |
commit | c7093fe77e5f23ac400c7a9a5f47952c04d40e53 (patch) | |
tree | 4c0439f14d07880734d2e480d3efb4f9ef993c2f /template/en/default/admin/classifications | |
parent | 6222af28e15f4b958d6d094b557abe4251cea084 (diff) | |
download | bugzilla-c7093fe77e5f23ac400c7a9a5f47952c04d40e53.tar.gz bugzilla-c7093fe77e5f23ac400c7a9a5f47952c04d40e53.tar.xz |
Bug 311973: Create admin/classifications/footer.html.tmpl to avoid code duplication - Patch by Nitish Bezzala <nbezzala@yahoo.com> r/a=LpSolit
Diffstat (limited to 'template/en/default/admin/classifications')
5 files changed, 28 insertions, 8 deletions
diff --git a/template/en/default/admin/classifications/add.html.tmpl b/template/en/default/admin/classifications/add.html.tmpl index 725477905..cd949f257 100644 --- a/template/en/default/admin/classifications/add.html.tmpl +++ b/template/en/default/admin/classifications/add.html.tmpl @@ -51,7 +51,6 @@ <input type="hidden" name="token" value="[% token FILTER html %]"> </FORM> -<p>Back to the <a href="./">main [% terms.bugs %] page</a> -or <a href="editclassifications.cgi"> edit</a> more classifications. +[% PROCESS admin/classifications/footer.html.tmpl %] [% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/admin/classifications/del.html.tmpl b/template/en/default/admin/classifications/del.html.tmpl index 8e4876872..5a3800f7a 100644 --- a/template/en/default/admin/classifications/del.html.tmpl +++ b/template/en/default/admin/classifications/del.html.tmpl @@ -58,7 +58,6 @@ <input type="hidden" name="token" value="[% token FILTER html %]"> </form> -<p>Back to the <a href="./">main [% terms.bugs %] page</a> -or <a href="editclassifications.cgi"> edit</a> more classifications.</p> +[% PROCESS admin/classifications/footer.html.tmpl %] [% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/admin/classifications/edit.html.tmpl b/template/en/default/admin/classifications/edit.html.tmpl index b3ef22bca..80d7f9840 100644 --- a/template/en/default/admin/classifications/edit.html.tmpl +++ b/template/en/default/admin/classifications/edit.html.tmpl @@ -80,7 +80,6 @@ <input type=submit value="Update"> </form> -<p>Back to the <a href="./">main [% terms.bugs %] page</a> -or <a href="editclassifications.cgi"> edit</a> more classifications. +[% PROCESS admin/classifications/footer.html.tmpl %] [% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/admin/classifications/footer.html.tmpl b/template/en/default/admin/classifications/footer.html.tmpl new file mode 100644 index 000000000..db983aa74 --- /dev/null +++ b/template/en/default/admin/classifications/footer.html.tmpl @@ -0,0 +1,24 @@ +[%# 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 Netscape Communications + # Corporation. Portions created by Netscape are + # Copyright (C) 1998 Netscape Communications Corporation. All + # Rights Reserved. + # + # Contributor(s): Nitish Bezzala <nbezzala@yahoo.com> + #%] + +[% PROCESS global/variables.none.tmpl %] + +<p>Back to the <a href="./">main [% terms.bugs %] page</a> +or <a href="editclassifications.cgi"> edit</a> more classifications.</p> diff --git a/template/en/default/admin/classifications/reclassify.html.tmpl b/template/en/default/admin/classifications/reclassify.html.tmpl index 08b85afa9..146a1acc6 100644 --- a/template/en/default/admin/classifications/reclassify.html.tmpl +++ b/template/en/default/admin/classifications/reclassify.html.tmpl @@ -84,8 +84,7 @@ <input type="hidden" name="token" value="[% token FILTER html %]"> </form> -<p>Back to the <a href="./">main [% terms.bugs %] page</a>, -or <a href="editclassifications.cgi"> edit</a> more classifications. +[% PROCESS admin/classifications/footer.html.tmpl %] [% PROCESS global/footer.html.tmpl %] |