r295: Added global page elements to main pages.
[bugdar.git] / templates / editcomment.tpl
1 $doctype
2 $headinclude
3 $header
4
5 <div><strong>Bug:</strong> $bug[summary]</div>
6 <div><strong>Comment posted on:</strong> $comment[posttime]</div>
7 <div><strong>Comment posted by:</strong> $comment[postby]</div>
8
9 <form name="editcomment" method="post" action="editcomment.php">
10 <input type="hidden" name="do" value="update" />
11 <input type="hidden" name="commentid" value="$comment[commentid]" />
12 <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>
13 <div><strong>Comment:</strong></div><textarea name="comment" cols="100" rows="35">$comment[comment]</textarea>
14 <div><input type="submit" name="submit" value="Save Changes" /></div>
15 </form>
16
17 $footer