diff --git a/app/views/guidances/_guidance_form.html.erb b/app/views/guidances/_guidance_form.html.erb
index 0dcb766..cf5f333 100644
--- a/app/views/guidances/_guidance_form.html.erb
+++ b/app/views/guidances/_guidance_form.html.erb
@@ -2,16 +2,13 @@
<%= f.label :text, class: 'control-label' %>
<%= text_area_tag("guidance-text", guidance.text, class: "tinymce form-control", 'aria-required': true, rows: 10) %>
-
- <%= f.label _('Themes'), for: :theme_ids, class: 'control-label' %>
- <%= f.collection_select(:theme_ids, themes,
- :id, :title, {prompt: false}, {multiple: true, 'data-toggle': 'tooltip', title: _('Select which theme(s) this guidance relates to.'), class: 'form-control', 'aria-required': true}) %>
-
+<% render partial: 'org_admin/shared/theme_selector', locals: { f: f, all_themes: themes } %>
<%= f.label _('Guidance group'), for: :guidance_group_id, class: 'control-label' %>
<%= f.collection_select(:guidance_group_id, guidance_groups,
: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/guidances/new_edit.html.erb b/app/views/guidances/new_edit.html.erb
index a9fc547..09d3aca 100644
--- a/app/views/guidances/new_edit.html.erb
+++ b/app/views/guidances/new_edit.html.erb
@@ -12,11 +12,7 @@
<%= f.label :text, class: 'control-label' %>
<%= text_area_tag("guidance-text", guidance.text, class: "tinymce form-control", 'aria-required': true, rows: 10) %>
-
- <%= f.label _('Themes'), for: :theme_ids, class: 'control-label' %>
- <%= f.collection_select(:theme_ids, themes,
- :id, :title, {prompt: false}, {multiple: true, 'data-toggle': 'tooltip', title: _('Select which theme(s) this guidance relates to.'), class: 'form-control', 'aria-required': true}) %>
-
+ <%= render partial: 'org_admin/shared/theme_selector', locals: { f: f, all_themes: themes } %>
-
- <%= f.label(:theme_ids, _('Themes'), class: "control-label") %>
- <%= f.collection_select(:theme_ids,
- Theme.all.order("title"),
- :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'}) %>
+
+ <%= render partial: 'org_admin/shared/theme_selector', locals: { f: f, all_themes: Theme.all.order("title") } %>
-
-