Compare commits

..

2 Commits

Author SHA1 Message Date
36208ab7a8 Merge pull request 'fix initial_date' (#6) from 0x1D8/typst_nure_template:main into main
Reviewed-on: #6
2025-02-13 11:41:01 +02:00
ab418ea1ec fix intial_date 2025-02-13 08:24:40 +02:00

View File

@ -221,7 +221,7 @@
/// - authors ((name: str, full_name_gen: str, variant: int, group: str, gender: str),): List of Authors dicts. /// - authors ((name: str, full_name_gen: str, variant: int, group: str, gender: str),): List of Authors dicts.
/// - mentors ((name: str, gender: str, degree: str),): List of mentors dicts. /// - mentors ((name: str, gender: str, degree: str),): List of mentors dicts.
/// - edu_program_shorthand (str): Education program shorthand. /// - edu_program_shorthand (str): Education program shorthand.
/// - task_list (done_date: datetime, initial_data: datetime, source: (content | str), content: (content | str), graphics: (content | str)): Task list object. /// - task_list (done_date: datetime, initial_date: datetime, source: (content | str), content: (content | str), graphics: (content | str)): Task list object.
/// - calendar_plan ( plan_table: (content | str), approval_date: datetime): Calendar plan object. /// - calendar_plan ( plan_table: (content | str), approval_date: datetime): Calendar plan object.
/// - abstract (keywords: (str, ), text: (content | str)): Abstract object. /// - abstract (keywords: (str, ), text: (content | str)): Abstract object.
/// - bib_path path: Path to the bibliography yaml file. /// - bib_path path: Path to the bibliography yaml file.
@ -397,8 +397,8 @@
linebreak() linebreak()
{ {
bold[\6. Строк здачі закінченої роботи:] bold[\6. Дата видачі завдання:]
uline(task_list.done_date.display("[day].[month].[year]")) uline(task_list.initial_date.display("[day].[month].[year]"))
hfill(10fr) hfill(10fr)
} }