mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
6fcb9152dc
* Fix CSS for generated pdf/docx reports [SCI-7660] * Call correct asset previewable function [SCI-7660]
24 lines
731 B
Ruby
24 lines
731 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', code: project.code,
|
|
timestamp: I18n.l(project.created_at, format: :full)), color: color[:gray]
|
|
br
|
|
end
|
|
end
|
|
end
|