mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
17 lines
484 B
Ruby
17 lines
484 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DrawProjectHeader
|
||
|
def draw_project_header(subject)
|
||
|
project = Project.find_by_id(subject['id']['project_id'])
|
||
|
return unless 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
|