# 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