diff options
author | lpsolit%gmail.com <> | 2005-07-28 05:51:33 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-28 05:51:33 +0200 |
commit | 2cb50a4babb6127ddd93a730e4cba9b728ccffc5 (patch) | |
tree | 1bd501e18dcfba1d4f8746c27ff7a49b78521769 | |
parent | c10df9cb07c8b7cd581b0245db86ab7fe8224629 (diff) | |
download | bugzilla-2cb50a4babb6127ddd93a730e4cba9b728ccffc5.tar.gz bugzilla-2cb50a4babb6127ddd93a730e4cba9b728ccffc5.tar.xz |
Bug 301018: Add INTERFACE section to bug/create/created.html.tmpl - Patch by Marc Schumann <wurblzap@gmail.com> r=wicked a=myk
-rw-r--r-- | template/en/default/bug/create/created.html.tmpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/template/en/default/bug/create/created.html.tmpl b/template/en/default/bug/create/created.html.tmpl index 312d7f70b..17f057ca0 100644 --- a/template/en/default/bug/create/created.html.tmpl +++ b/template/en/default/bug/create/created.html.tmpl @@ -19,6 +19,20 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] +[%# INTERFACE: + # id: number; the ID of the bug that was created. + # sentmail: array of hash; bugs for which BugMail should be sent, contains: + # type: string; type of change for this bug, either 'created' if this bug + # was created or 'dep' if it was added as a dependent/blocker + # id: integer; the ID of the bug + # mailrecipients: hash; contains the BugMail recipients, for details on + # this contents, see template bug/process/bugmail.html.tmpl + # bug: object; Bugzilla::Bug object of the bug that was created (used in + # template bug/edit.html.tmpl + # bug_list: array of integers; sorted bug list (used in template + # bug/navigate.html.tmpl) + #%] + [% PROCESS global/variables.none.tmpl %] [% PROCESS global/header.html.tmpl @@ -32,6 +46,7 @@ type = item.type id = item.id mail = item.mail + mailrecipients = mailrecipients %] [% END %] |