r295: Added global page elements to main pages.
[bugdar.git] / templates / newattach.tpl
1 $doctype
2 $headinclude
3 $header
4
5 <form action="attachment.php" method="post" enctype="multipart/form-data" name="newattach">
6 <input name="do" type="hidden" value="insert" />
7 <input name="bugid" type="hidden" value="$bug[bugid]" />
8 <input name="MAX_FILE_SIZE" type="hidden" value="$MAXFILESIZE" />
9 <input name="attachment" type="file" />
10
11 <div><strong>Description:</strong> <input name="description" type="text" size="35" /></div>
12
13 <if condition="$show['obsoletes']">
14 <div><strong>Mark the Following Attachments Obsolete:</strong>
15 $obsoletes
16 </div>
17 </if>
18
19 <if condition="$show['addcomment']">
20 <div><strong>Add Comment:</strong>
21 <div>
22 <textarea name="comment" rows="10" cols="60"></textarea>
23 </div>
24 </div>
25 </if>
26
27 <input name="submit" type="submit" value=" Submit " accesskey="s" />
28 <input name="reset" type="reset" value=" Reset " accesskey="r" />
29
30 </form>
31
32 $footer