diff --git a/app/views/branded/guidances/new_edit.html.erb b/app/views/branded/guidances/new_edit.html.erb
index 45d7855..1e5d170 100644
--- a/app/views/branded/guidances/new_edit.html.erb
+++ b/app/views/branded/guidances/new_edit.html.erb
@@ -14,7 +14,7 @@
<%= text_area_tag("guidance-text", guidance.text, class: "form-control", 'aria-required': true, rows: 10) %>
<%= render partial: 'org_admin/shared/theme_selector',
- locals: { f: f, all_themes: themes, as_radio: false, required: true,
+ locals: { f: f, all_themes: themes, as_radio: true, required: true,
popover_message: _('Select one or more themes that are relevant to this guidance. This will display your generic organisation-level guidance, or any Schools/Departments for which you create guidance groups, across all templates that have questions with the corresponding theme tags.') } %>
+ <%# example_answer and guidance annotations as nested fields %>
+ <% question.annotations_per_org(current_user.org_id).each do |annotation| %>
+ <%= f.fields_for(:annotations, annotation) do |annotation_fields| %>
+ <%= render partial: 'org_admin/annotations/form', locals: { f: annotation_fields } %>
+ <% end %>
+ <% end %>
+
+
+ <%= render partial: 'org_admin/shared/theme_selector',
+ locals: { f: f, all_themes: Theme.all.order("title"), as_radio: false,
+ popover_message: _('Select one or more themes that are relevant to this question. This will allow similarly themed organisation-level guidance to appear alongside your question.') } %>
+