mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
2793777463
* Initial setup for docx report * Add render for project, experiment, my_module * Implement converter for RTE fields * Add all report elements * fix markup * Change headers, remove empty blocks, refactored repository draw * Add smart annotations support * Fix justify fields * Prepare for addons integration * Fix markup * Add comments to GemFile * Fix TinyMCE error * Change UI for new report download selector * Fix file error in inventory cell for docx * Fix i18n object for header
16 lines
484 B
Ruby
16 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
|