# Marc Schumann <wurblzap@gmail.com>
#%]
-[% PROCESS global/variables.none.tmpl %]
+[% PROCESS "global/field-descs.none.tmpl" %]
[%# Define strings that will serve as the title and header of this page %]
[% title = BLOCK %]Create New Attachment for [% terms.Bug %] #[% bug.bug_id %][% END %]
[% IF bug_statuses.size %]
<label for="takebug">and set the [% terms.bug %] status to</label>
<select id="bug_status" name="bug_status">
- <option label="[% bug.status.name FILTER html %]">[% bug.status.name FILTER html %] (current)</option>
+ <option value="[% bug.status.name FILTER html %]">[% get_status(bug.status.name) FILTER html %] (current)</option>
[% FOREACH bug_status = bug_statuses %]
[% NEXT IF bug_status.id == bug.status.id %]
- <option label="[% bug_status.name FILTER html %]">[% bug_status.name FILTER html %]</option>
+ <option value="[% bug_status.name FILTER html %]">[% get_status(bug_status.name) FILTER html %]</option>
[% END %]
</select>
[% END %]