Skip to content

Commit

Permalink
Merge pull request #4440 from mikhailprivalov/fix-assignments
Browse files Browse the repository at this point in the history
Лист назначений - fix
  • Loading branch information
urchinpro authored Nov 2, 2024
2 parents ac466f3 + 278eb55 commit f9a06c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions forms/forms107.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,11 +531,11 @@ def form_03(request_data):
]
assignments_data = [
[
Paragraph(f'{" ".join(i["research_title"])}', style),
Paragraph(f'{i["create_date"]}', styleCenter),
Paragraph(f'{i["who_assigned"]}', styleCenter),
Paragraph(f'{i["time_confirmation"]}', styleCenter),
Paragraph(f'{i["who_confirm"]}', styleCenter),
Paragraph(f'{" ".join(i["researchTitle"])}', style),
Paragraph(f'{i["createDate"]}', styleCenter),
Paragraph(f'{i["whoAssigned"]}', styleCenter),
Paragraph(f'{i["timeConfirmation"]}', styleCenter),
Paragraph(f'{i["whoConfirm"]}', styleCenter),
]
for i in assignments
]
Expand Down

0 comments on commit f9a06c5

Please sign in to comment.