r498: Changing <div>s drawn with t* classes to use the new box.css model
[bugdar.git] / templates / newattach.tpl
1 $doctype
2 <html lang="$stylevar[lang]" xml:lang="$stylevar[lang]">
3 <head>
4 $headinclude
5 <link rel="stylesheet" href="templates/box.css" media="screen" />
6 <title>{@"New Attachment"} - $bug[summary]</title>
7 </head>
8
9 $header
10
11 <form action="attachment.php" method="post" enctype="multipart/form-data" name="newattach">
12
13 <input name="do" type="hidden" value="insert" />
14 <input name="bugid" type="hidden" value="$bug[bugid]" />
15 <input name="MAX_FILE_SIZE" type="hidden" value="$MAXFILESIZE" />
16
17 <div class="box">
18 <div class="box-head"><lang 1="$bug[bugid]" 2="$bug[summary]">{@"New Attachment for Bug #%1$s %2$s"}</lang></div>
19
20 <div class="box-mid + box-margmod-bottom">
21 <div><input name="attachment" type="file" /></div>
22 <div><strong>{@"Description"}:</strong> <input name="description" type="text" size="35" /></div>
23 </div>
24
25 <if condition="$show['obsoletes']">
26 <div class="box-mid + box-margmod-bottom">
27 <div><strong>{@"Mark the Following Attachments Obsolete"}:</strong>
28 $obsoletes
29 </div>
30 </div>
31 </if>
32
33 <if condition="$show['addcomment']">
34 <div class="box-mid">
35 <div><strong>{@"Add Comment"}:</strong>
36 <div>
37 <textarea name="comment" rows="10" cols="50" style="width: 100%"></textarea>
38 </div>
39 </div>
40 </div>
41 </if>
42 </div>
43
44 <br />
45
46 <div id="submitrow">
47 <input name="submit" type="submit" value=" {@"Submit"} " accesskey="s" />
48 <input name="reset" type="reset" value=" {@"Reset"} " accesskey="r" />
49 </div>
50
51 </form>
52
53 $footer