diff --git a/app/views/plans/index.html.erb b/app/views/plans/index.html.erb index b40d24f..ddac606 100644 --- a/app/views/plans/index.html.erb +++ b/app/views/plans/index.html.erb @@ -17,7 +17,7 @@
| <%= _('Plan') %> | +<%= _('Project Title') %> | <%= _('Template') %> | <%= _('Edited') %> | <%= _('Role') %> | diff --git a/app/views/plans/public_export.pdf.erb b/app/views/plans/public_export.pdf.erb index b9ab084..f33d1d9 100644 --- a/app/views/plans/public_export.pdf.erb +++ b/app/views/plans/public_export.pdf.erb @@ -27,6 +27,8 @@
|---|
| <%= _('Plan') %> | +<%= _('Plan Title') %> | <%= _('Template') %> | <%= _('Organisation') %> | <%= _('Owner') %> | @@ -28,7 +28,7 @@<%= plan.title %> | <%= plan.template.title %> | <%= (plan.owner.nil? || plan.owner.org.nil? ? _('Not Applicable') : plan.owner.org.name) %> | -<%= (plan.owner.nil? ? _('Unknown') : plan.owner.name) %> | +<%= (plan.owner.nil? ? _('Unknown') : plan.owner.name(false)) %> | <%= link_to _('PDF'), public_export_path(plan, format: :pdf), |
|---|