diff options
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/default/report/display.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/web/default/report/display.html b/templates/web/default/report/display.html index b3eb0d779..fe26ec60d 100644 --- a/templates/web/default/report/display.html +++ b/templates/web/default/report/display.html @@ -95,6 +95,7 @@ <option [% 'selected ' IF state.0 == problem.state %] value="[% state.0 %]">[% state.1 %]</option> [% END %] </select> + </div> [% ELSE %] [% IF problem.is_fixed AND c.user_exists AND c.user.id == problem.user_id %] <div class="checkbox"> @@ -103,7 +104,7 @@ </div> [% ELSIF !problem.is_fixed %] <div class="checkbox"> - <input type="checkbox" name="fixed" id="form_fixed" value="1"[% fixed %]> + <input type="checkbox" name="fixed" id="form_fixed" value="1"[% ' checked' IF update.mark_fixed %]> <label for="form_fixed">[% loc('This problem has been fixed') %]</label> </div> [% END %] |