<%= f.label :org_name, _('Organisation'), class: 'control-label' %>
<%= render partial: "shared/accessible_combobox",
locals: {name: "user[org_name]",
id: "user_org_name",
default_selection: default_org,
models: orgs,
attribute: 'name'} %>
<% if allow_other_orgs %>
<div class="clearfix"></div>
<a href="#" id="other-org-link"><%= _('My organisation isn\'t listed.') %></a>
<div class="clearfix"></div>
<%= f.text_field :other_organisation, autocomplete: "off", class: "form-control hide",
placeholder: _('Please enter the name of your organisation') %>
<% end %>