diff --git a/app/views/plans/export.html.erb b/app/views/plans/export.html.erb index 4c3d5bc..990af6c 100644 --- a/app/views/plans/export.html.erb +++ b/app/views/plans/export.html.erb @@ -19,13 +19,11 @@ <% details.each do |field| value = @exported_plan.send(field) - if value.present? %> -

- <%= admin_field_t(field) -%>

- <%= value -%> +

- <%= admin_field_t(field.to_s) -%>

+ <%= value.present? ? value : _('-') -%> - <% end %> <% end %>