r598: Adding language direction attribute to templates
[bugdar.git] / templates / editcomment.tpl
1 $doctype
2 <html lang="$stylevar[lang]" xml:lang="$stylevar[lang]" dir="$stylevar[lang_dir]">
3 <head>
4 $headinclude
5 <link rel="stylesheet" href="templates/box.css" media="screen" />
6 <title><lang 1="$comment[commentid]">{@"Edit Comment %1$s"}</lang> - $bug[summary]</title>
7 </head>
8
9 <body>
10
11 $header
12
13 <form name="editcomment" method="post" action="editcomment.php">
14 <input type="hidden" name="do" value="update" />
15 <input type="hidden" name="commentid" value="$comment[commentid]" />
16
17 <div class="box">
18 <div class="box-head">
19 <lang 1="$comment[commentid]" 2="$bug[bugid]" 3="$bug[summary]">{@"Comment #%1$s in bug #%2$s <em>%3$s</em>"}</lang>
20 </div>
21
22 <div class="box-foot + box-margmod-bottom"><lang 1="$comment[posttime]" 2="$comment[postby]">{@"Posted on %1$s by %2$s"}</lang></div>
23
24 <div class="box-mid">
25 <if condition="$show['hide']"><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></if>
26 <textarea name="comment" cols="50" rows="15" style="width: 100%">$comment[comment]</textarea>
27 </div>
28 </div>
29
30 <br />
31
32 <div id="submitrow">
33 <input type="submit" name="submit" accesskey="s" value=" {@"Save Changes"} " />
34 <input type="reset" name="reset" accesskey="r" value=" {@"Reset Fields"} " />
35 </div>
36
37 $footer