diff --git a/app/assets/stylesheets/legislation_process.scss b/app/assets/stylesheets/legislation_process.scss
index 39a45da93..3fbc509bf 100644
--- a/app/assets/stylesheets/legislation_process.scss
+++ b/app/assets/stylesheets/legislation_process.scss
@@ -525,7 +525,15 @@ $epigraph-line-height: rem-calc(22);
}
.draft-panels {
+ position: relative;
padding: 2rem 0;
+
+ aside.absolute {
+ @include breakpoint(medium) {
+ position: absolute;
+ right: 0;
+ }
+ }
.draft-chooser {
margin-bottom: 2rem;
diff --git a/app/assets/stylesheets/participation.scss b/app/assets/stylesheets/participation.scss
index 6609f25df..d57807912 100644
--- a/app/assets/stylesheets/participation.scss
+++ b/app/assets/stylesheets/participation.scss
@@ -298,7 +298,8 @@
.proposal-show,
.investment-project-show,
.debate-quiz,
-.budget-investment-show {
+.budget-investment-show,
+.draft-panels {
p {
word-wrap: break-word;
diff --git a/app/views/legislation/annotations/_slim_version_chooser.html.erb b/app/views/legislation/annotations/_slim_version_chooser.html.erb
new file mode 100644
index 000000000..cd34736f7
--- /dev/null
+++ b/app/views/legislation/annotations/_slim_version_chooser.html.erb
@@ -0,0 +1,23 @@
+
+
+
<%= t('legislation.annotations.version_chooser.seeing_version') %>
+
+ <%= form_tag go_to_version_legislation_process_draft_versions_path(process), method: :get, id: "draft_version_go_to_version" do %>
+ <%= select_tag "draft_version_id", options_from_collection_for_select(process.draft_versions.published, 'id', 'display_title', draft_version.id), "aria-label": t('legislation.draft_versions.show.select_draft_version') %>
+ <%= hidden_field_tag "redirect_action", "annotations" %>
+ <%= submit_tag t('legislation.draft_versions.show.select_version_submit'), class: "button" %>
+ <% end %>
+
+
<%= t('legislation.draft_versions.show.updated_at', date: format_date(@draft_version.updated_at)) %>
+
+
+ <%= link_to t('legislation.annotations.version_chooser.see_text'), legislation_process_draft_version_path(process, draft_version), title: t('legislation.annotations.version_chooser.see_text'), class: "button strong" %>
+
+
+
diff --git a/app/views/legislation/annotations/index.html.erb b/app/views/legislation/annotations/index.html.erb
index 87efc3614..7553276f1 100644
--- a/app/views/legislation/annotations/index.html.erb
+++ b/app/views/legislation/annotations/index.html.erb
@@ -7,29 +7,34 @@
<%= render 'version_chooser', process: @process, draft_version: @draft_version %>
-
-
+
+
+
+ <% @annotations.each do |annotation| %>
+
+ <% end %>
diff --git a/app/views/legislation/annotations/show.html.erb b/app/views/legislation/annotations/show.html.erb
index 89b371821..0d261d27a 100644
--- a/app/views/legislation/annotations/show.html.erb
+++ b/app/views/legislation/annotations/show.html.erb
@@ -6,11 +6,7 @@
- <%= render 'version_chooser', process: @process, draft_version: @draft_version %>
-
-
- <%= render '/legislation/shared/share_buttons', title: @annotation.quote %>
-
+ <%= render 'slim_version_chooser', process: @process, draft_version: @draft_version %>