scinote-web/app/services/reports/docx/draw_project_header.rb
2023-12-07 12:53:21 +01:00

24 lines
747 B
Ruby

# frozen_string_literal: true
module Reports::Docx::DrawProjectHeader
def draw_project_header(subject)
project = subject.project
link_style = @link_style
scinote_url = @scinote_url
color = @color
return unless project && can_read_project?(@user, project)
@docx.h1 do
link I18n.t('projects.reports.elements.project_header.title', project: project.name),
scinote_url + Rails.application.routes.url_helpers.experiments_path(project_id: project),
link_style
end
@docx.p do
text I18n.t('projects.reports.elements.project_header.user_time', code: project.code,
timestamp: I18n.l(project.created_at, format: :full)), color: color[:gray]
br
end
end
end