r231: Removing template sets. Part 1 of 3 in a multi-stage commit.
[bugdar.git] / templates / newattach.tpl
1 <form action="attachment.php" method="post" enctype="multipart/form-data" name="newattach">
2 <input name="do" type="hidden" value="insert" />
3 <input name="bugid" type="hidden" value="$bug[bugid]" />
4 <input name="MAX_FILE_SIZE" type="hidden" value="$MAXFILESIZE" />
5 <input name="attachment" type="file" />
6
7 <div><strong>Description:</strong> <input name="description" type="text" size="35" /></div>
8
9 <if condition="$show['obsoletes']">
10 <div><strong>Mark the Following Attachments Obsolete:</strong>
11 $obsoletes
12 </div>
13 </if>
14
15 <if condition="$show['addcomment']">
16 <div><strong>Add Comment:</strong>
17 <div>
18 <textarea name="comment" rows="10" cols="60"></textarea>
19 </div>
20 </div>
21 </if>
22
23 <input name="submit" type="submit" value=" Submit " accesskey="s" />
24 <input name="reset" type="reset" value=" Reset " accesskey="r" />
25
26 </form>