diff options
author | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
commit | 2362793369156ae7c9c63c50a07ac2c79a9df7fa (patch) | |
tree | 5bfcf1b1a5410c8691be31c81057bd06231c86b1 /template/en/default/reports | |
parent | 38b4491409ab9e0bd8c020a0d87c8b273097139b (diff) | |
download | bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.gz bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.xz |
Bug 317694: All buttons in forms must have an id - Patches by André Batosti <batosti@async.com.br> r=ghendricks a=myk
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/create-chart.html.tmpl | 16 | ||||
-rw-r--r-- | template/en/default/reports/duplicates.html.tmpl | 5 | ||||
-rw-r--r-- | template/en/default/reports/series.html.tmpl | 5 |
3 files changed, 16 insertions, 10 deletions
diff --git a/template/en/default/reports/create-chart.html.tmpl b/template/en/default/reports/create-chart.html.tmpl index c02e8db04..f2daeb06a 100644 --- a/template/en/default/reports/create-chart.html.tmpl +++ b/template/en/default/reports/create-chart.html.tmpl @@ -87,7 +87,8 @@ function subcatSelected() { <td> <noscript> - <input type="submit" name="action-assemble" value="Update -->"> + <input type="submit" name="action-assemble" value="Update -->" + id="action-assemble"> </noscript> </td> @@ -97,7 +98,8 @@ function subcatSelected() { <td> <noscript> - <input type="submit" name="action-assemble" value="Update -->"> + <input type="submit" name="action-assemble" value="Update -->" + id="action-assemble"> </noscript> </td> @@ -116,7 +118,8 @@ function subcatSelected() { </td> <td align="center" valign="middle"> - <input type="submit" name="action-add" value="Add To List"><br> + <input type="submit" name="action-add" value="Add To List" + id="action-add"><br> </td> </tr> [% END %] @@ -225,9 +228,9 @@ function subcatSelected() { <tr> <td valign="bottom" style="text-align: center;"> <input type="submit" name="action-sum" value="Sum" - style="width: 5em;"><br> + style="width: 5em;" id="action-sum"><br> <input type="submit" name="action-remove" value="Remove" - style="width: 5em;"> + style="width: 5em;" id="action-remove"> </td> <td style="text-align: right; vertical-align: bottom;"> @@ -247,7 +250,8 @@ function subcatSelected() { </td> <td style="text-align: right" valign="bottom"> - <input type="submit" name="action-wrap" value="Chart This List"> + <input type="submit" name="action-wrap" value="Chart This List" + id="action-wrap"> </td> </tr> </table> diff --git a/template/en/default/reports/duplicates.html.tmpl b/template/en/default/reports/duplicates.html.tmpl index 897bbf17f..72f79e255 100644 --- a/template/en/default/reports/duplicates.html.tmpl +++ b/template/en/default/reports/duplicates.html.tmpl @@ -120,13 +120,14 @@ </table> - <input type="submit" value="Change"> + <input type="submit" id="change" value="Change"> </form> <form method="post" action="buglist.cgi"> <input type="hidden" name="bug_id" value="[% bug_ids_string %]"> <input type="hidden" name="order" value="Reuse same sort as last time"> - Or just give this to me as a <input type="submit" value="[% terms.bug %] list">. + Or just give this to me as a <input type="submit" id="list" + value="[% terms.bug %] list">. (Note: the order may not be the same.) </form> diff --git a/template/en/default/reports/series.html.tmpl b/template/en/default/reports/series.html.tmpl index d75808070..1d1caf5d4 100644 --- a/template/en/default/reports/series.html.tmpl +++ b/template/en/default/reports/series.html.tmpl @@ -47,7 +47,8 @@ onchange => "catSelected()" } %] <td> <noscript> - <input type="submit" name="action-edit" value="Update -->"> + <input type="submit" name="action-edit" value="Update -->" + id="action-edit"> </noscript> </td> @@ -89,7 +90,7 @@ </td> <td></td> <td> - <input type="submit" name="submit-button" + <input type="submit" name="submit-button" id="submit-button" value="[% button_name FILTER html %]"> </td> </tr> |