r372: Fix padding issue
[bugdar.git] / templates / editcomment.tpl
1 $doctype
2 <html lang="$stylevar[lang]" xml:lang="$stylevar[lang]">
3 <head>
4 $headinclude
5 <title>Edit Comment $comment[commentid] - $bug[summary]</title>
6 </head>
7
8 $header
9
10 <form name="editcomment" method="post" action="editcomment.php">
11 <input type="hidden" name="do" value="update" />
12 <input type="hidden" name="commentid" value="$comment[commentid]" />
13
14 <div class="tborder" style="padding: 1px">
15 <div class="thead" style="padding: $stylevar[padding]px; margin-bottom: 1px">Comment #$comment[commentid] in bug #$bug[bugid] <em>$bug[summary]</em></div>
16 <div class="extrabg" style="padding: $stylevar[padding]px; margin-bottom: 1px">Posted on $comment[posttime] by $comment[postby]</div>
17 <div class="tmiddle" style="padding: $stylevar[padding]px; margin-bottom: 1px">
18 <div><strong<if condition="$comment['hidden']"> style="color: red"</if>>Hidden:</strong> <input type="checkbox" name="hidden" value="1"<if condition="$comment['hidden']"> checked="checked"</if> /></div>
19 <textarea name="comment" cols="50" rows="15" style="width: 100%">$comment[comment]</textarea>
20 </div>
21 <div class="tfoot" style="padding: $stylevar[padding]px">
22 <input type="submit" name="submit" value=" Save Changes " />
23 <input type="reset" name="reset" value=" Reset Fields " />
24 </div>
25 </div>
26
27 $footer