diff options
author | Struan Donald <struan@exo.org.uk> | 2012-04-25 11:38:34 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-04-25 11:38:34 +0100 |
commit | 4f9b1fc3a356f9d3c760ac9bb0400c785b06776d (patch) | |
tree | 3bbcd1fe1e692a2a4f024d2d80b2496b71d06485 | |
parent | 32040ddff57d81a36b7843e0d5a0a5931972f6e9 (diff) |
title is all uppercase
-rw-r--r-- | templates/web/default/report/new/extra_name.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/web/default/report/new/extra_name.html b/templates/web/default/report/new/extra_name.html index ea523410b..503b6acc3 100644 --- a/templates/web/default/report/new/extra_name.html +++ b/templates/web/default/report/new/extra_name.html @@ -6,10 +6,10 @@ <select class="form-focus-trigger" id="form_fms_extra_title" name="fms_extra_title"> <option></option> - <option value="Mr"[% ' selected' IF fms_extra_title == 'Mr' %]>Mr</option> - <option value="Miss"[% ' selected' IF fms_extra_title == 'Miss' %]>Miss</option> - <option value="Mrs"[% ' selected' IF fms_extra_title == 'Mrs' %]>Mrs</option> - <option value="Ms"[% ' selected' IF fms_extra_title == 'Ms' %]>Ms</option> - <option value="Dr"[% ' selected' IF fms_extra_title == 'Dr' %]>Dr</option> + <option value="MR"[% ' selected' IF fms_extra_title == 'Mr' %]>Mr</option> + <option value="MISS"[% ' selected' IF fms_extra_title == 'Miss' %]>Miss</option> + <option value="MRS"[% ' selected' IF fms_extra_title == 'Mrs' %]>Mrs</option> + <option value="MS"[% ' selected' IF fms_extra_title == 'Ms' %]>Ms</option> + <option value="DR"[% ' selected' IF fms_extra_title == 'Dr' %]>Dr</option> </select> [% END %] |