diff --git a/app/views/guidances/_guidance_form.html.erb b/app/views/guidances/_guidance_form.html.erb
index 4fc1f67..0dcb766 100644
--- a/app/views/guidances/_guidance_form.html.erb
+++ b/app/views/guidances/_guidance_form.html.erb
@@ -5,12 +5,12 @@
<%= f.label _('Themes'), for: :theme_ids, class: 'control-label' %>
<%= f.collection_select(:theme_ids, themes,
- :id, :title, {prompt: false, include_blank: 'None'}, {multiple: true, 'data-toggle': 'tooltip', title: _('Select which theme(s) this guidance relates to.'), class: 'form-control', 'aria-required': true}) %>
+ :id, :title, {prompt: false}, {multiple: true, 'data-toggle': 'tooltip', title: _('Select which theme(s) this guidance relates to.'), class: 'form-control', 'aria-required': true}) %>
<%= f.label _('Guidance group'), for: :guidance_group_id, class: 'control-label' %>
<%= f.collection_select(:guidance_group_id, guidance_groups,
- :id, :name, {prompt: false, include_blank: 'None'}, {multiple: false, 'data-toggle': 'tooltip', title: _('Select which group this guidance relates to.'), class: 'form-control', 'aria-required': true})%>
+ :id, :name, {prompt: false}, {multiple: false, 'data-toggle': 'tooltip', title: _('Select which group this guidance relates to.'), class: 'form-control', 'aria-required': true})%>
<%= f.label :published, raw("#{f.check_box :published, as: :check_boxes, 'data-toggle': 'tooltip', title: _("Check this box when you are ready for this guidance to appear on user's plans.")} #{_('Published?')}") %>
diff --git a/app/views/questions/_add_question.html.erb b/app/views/questions/_add_question.html.erb
index e817622..158a51d 100644
--- a/app/views/questions/_add_question.html.erb
+++ b/app/views/questions/_add_question.html.erb
@@ -82,7 +82,7 @@
<%= f.label(:theme_ids, _('Themes'), class: "control-label") %>
<%= f.collection_select(:theme_ids,
Theme.all.order("title"),
- :id, :title, {prompt: false, include_blank: _('None')}, {multiple: true, 'data-toggle': 'tooltip', 'data-html': true, title: _("
Select themes that are relevant to this question.
This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.
You can select multiple themes by using the CTRL button.
"), class: 'form-control'}) %>
+ :id, :title, {prompt: false}, {multiple: true, 'data-toggle': 'tooltip', 'data-html': true, title: _("
Select themes that are relevant to this question.
This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.
You can select multiple themes by using the CTRL button.
"), class: 'form-control'}) %>
diff --git a/app/views/questions/_edit_question.html.erb b/app/views/questions/_edit_question.html.erb
index d673a67..836e34f 100644
--- a/app/views/questions/_edit_question.html.erb
+++ b/app/views/questions/_edit_question.html.erb
@@ -90,7 +90,7 @@
<%= f.label(:theme_ids, _('Themes'), class: "control-label") %>
<%= f.collection_select(:theme_ids,
Theme.all.order("title"),
- :id, :title, {prompt: false, include_blank: _('None')}, {multiple: true, 'data-toggle': 'tooltip', 'data-html': true, title: _("
Select themes that are relevant to this question.
This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.
You can select multiple themes by using the CTRL button.
"), class: 'form-control'}) %>
+ :id, :title, {prompt: false}, {multiple: true, 'data-toggle': 'tooltip', 'data-html': true, title: _("
Select themes that are relevant to this question.
This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.
You can select multiple themes by using the CTRL button.
"), class: 'form-control'}) %>