mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
1732c8897a
* Fixes for docx [SCI-6979] * Remove step description from DOCX [SCI-6979]
26 lines
729 B
Ruby
26 lines
729 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.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)), color: color[:gray]
|
|
br
|
|
br
|
|
br
|
|
end
|
|
end
|
|
end
|