scinote-web/app/services/reports/docx/draw_project_header.rb
2022-07-13 12:52:56 +02:00

26 lines
689 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
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.project_path(project),
link_style
end
@docx.p do
text I18n.t('projects.reports.elements.project_header.user_time',
timestamp: I18n.l(project.created_at, format: :full))
br
br
br
end
end
end