diff options
-rw-r--r-- | templates/web/base/report/new/fill_in_details_form.html | 6 | ||||
-rw-r--r-- | templates/web/base/report/new/form_user.html | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/templates/web/base/report/new/fill_in_details_form.html b/templates/web/base/report/new/fill_in_details_form.html index 663b13e6a..917f9ec88 100644 --- a/templates/web/base/report/new/fill_in_details_form.html +++ b/templates/web/base/report/new/fill_in_details_form.html @@ -30,10 +30,6 @@ <fieldset> <div id="problem_form"> [% PROCESS 'report/new/form_report.html' %] - [% IF c.user_exists %] - [% PROCESS "report/new/form_user_loggedin.html" %] - [% ELSE %] - [% PROCESS "report/new/form_user_loggedout.html" %] - [% END %] + [% PROCESS 'report/new/form_user.html' %] </div> </fieldset> diff --git a/templates/web/base/report/new/form_user.html b/templates/web/base/report/new/form_user.html new file mode 100644 index 000000000..d0e8c0829 --- /dev/null +++ b/templates/web/base/report/new/form_user.html @@ -0,0 +1,5 @@ +[% IF c.user_exists %] + [% PROCESS "report/new/form_user_loggedin.html" %] +[% ELSE %] + [% PROCESS "report/new/form_user_loggedout.html" %] +[% END %] |