summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/workflow/comment.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/admin/workflow/comment.html.tmpl')
-rw-r--r--template/en/default/admin/workflow/comment.html.tmpl15
1 files changed, 7 insertions, 8 deletions
diff --git a/template/en/default/admin/workflow/comment.html.tmpl b/template/en/default/admin/workflow/comment.html.tmpl
index 94218c8fa..19762d154 100644
--- a/template/en/default/admin/workflow/comment.html.tmpl
+++ b/template/en/default/admin/workflow/comment.html.tmpl
@@ -15,9 +15,9 @@
<!--
function toggle_cell(cell) {
if (cell.checked)
- cell.parentNode.className = "checkbox-cell checked";
+ cell.parentNode.className = "checked";
else
- cell.parentNode.className = "checkbox-cell";
+ cell.parentNode.className = "";
}
//-->
</script>
@@ -28,7 +28,7 @@
</p>
<form id="workflow_form" method="POST" action="editworkflow.cgi">
-<table>
+<table id="workflow">
<tr>
<th colspan="2">&nbsp;</th>
<th colspan="[% statuses.size FILTER html %]" class="title">To</th>
@@ -38,7 +38,7 @@
<th rowspan="[% statuses.size + 2 FILTER html %]" class="title">From</th>
<th>&nbsp;</th>
[% FOREACH status = statuses %]
- <th class="col-header[% status.is_open ? " open-status" : " closed-status" %]">
+ <th class="[% status.is_open ? "open-status" : "closed-status" %] center">
[% display_value("bug_status", status.name) FILTER html %]
</th>
[% END %]
@@ -54,22 +54,21 @@
[% FOREACH new_status = statuses %]
[% IF workflow.${status.id}.${new_status.id}.defined %]
- <td align="center" class="checkbox-cell
- [% " checked" IF workflow.${status.id}.${new_status.id} %]"
+ <td class="[% "checked" IF workflow.${status.id}.${new_status.id} %]"
title="From [% status.name FILTER html %] to [% new_status.name FILTER html %]">
<input type="checkbox" name="c_[% status.id %]_[% new_status.id %]"
id="c_[% status.id %]_[% new_status.id %]" onclick="toggle_cell(this)"
[% " checked='checked'" IF workflow.${status.id}.${new_status.id} %]>
</td>
[% ELSE %]
- <td class="checkbox-cell forbidden">&nbsp;</td>
+ <td class="forbidden">&nbsp;</td>
[% END %]
[% END %]
</tr>
[% END %]
</table>
-<p align="center">
+<p class="center">
<input type="hidden" name="action" value="update_comment">
<input type="hidden" name="token" value="[% token FILTER html %]">
<input type="submit" id="update_comment" value="Commit Changes"> -