diff --git a/app/views/legislation/draft_versions/changes.html.erb b/app/views/legislation/draft_versions/changes.html.erb index 80d902720..8b97de7f4 100644 --- a/app/views/legislation/draft_versions/changes.html.erb +++ b/app/views/legislation/draft_versions/changes.html.erb @@ -1,3 +1,5 @@ +<% provide :title do %><%= "#{@draft_version.title} - #{t('.title')} - #{@process.title}" %><% end %> +

<%= @process.title %>

<%= @draft_version.title %>

diff --git a/app/views/legislation/draft_versions/show.html.erb b/app/views/legislation/draft_versions/show.html.erb index 3a1ec15cf..0c220c03b 100644 --- a/app/views/legislation/draft_versions/show.html.erb +++ b/app/views/legislation/draft_versions/show.html.erb @@ -1,3 +1,5 @@ +<% provide :title do %><%= "#{@draft_version.title} - #{@process.title}" %><% end %> +

<%= link_to @process.title, @process %>

<%= @draft_version.title %>

diff --git a/app/views/legislation/processes/phase.html.erb b/app/views/legislation/processes/phase.html.erb index 5ac6ceb85..04ee25523 100644 --- a/app/views/legislation/processes/phase.html.erb +++ b/app/views/legislation/processes/phase.html.erb @@ -1,3 +1,5 @@ +<% provide :title do %><%= @process.title %><% end %> + <%= render 'legislation/processes/header_full', process: @process %>
diff --git a/app/views/legislation/processes/show.html.erb b/app/views/legislation/processes/show.html.erb index 8e31431e0..471410b58 100644 --- a/app/views/legislation/processes/show.html.erb +++ b/app/views/legislation/processes/show.html.erb @@ -1,3 +1,4 @@ +<% provide :title do %><%= @process.title %><% end %> <%= render 'header_full', process: @process %> diff --git a/config/locales/en.yml b/config/locales/en.yml index 66c95a3d1..da1a1f6ea 100755 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -224,6 +224,7 @@ en: legislation: draft_versions: changes: + title: Changes see_text: See text show: see_changes: See changes diff --git a/config/locales/es.yml b/config/locales/es.yml index 09633a60d..bd5c748e0 100755 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -224,6 +224,7 @@ es: legislation: draft_versions: changes: + title: Cambios see_text: Ver texto show: see_changes: Ver cambios