mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
16 lines
537 B
Ruby
16 lines
537 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawProjectHeader
|
|
def draw_project_header(subject)
|
|
project = Project.find_by(id: subject['id']['project_id'])
|
|
return unless project && can_read_project?(@user, project)
|
|
|
|
@docx.p I18n.t('projects.reports.elements.project_header.user_time',
|
|
timestamp: I18n.l(project.created_at, format: :full))
|
|
@docx.h1 I18n.t('projects.reports.elements.project_header.title', project: project.name)
|
|
@docx.hr do
|
|
size 18
|
|
spacing 24
|
|
end
|
|
end
|
|
end
|