21 lines
652 B
Text
21 lines
652 B
Text
|
|
.project id=dom_id(project)
|
||
|
|
p
|
||
|
|
strong Name:
|
||
|
|
= project.name
|
||
|
|
p
|
||
|
|
strong Details:
|
||
|
|
= project.details
|
||
|
|
p
|
||
|
|
strong Berichte:
|
||
|
|
ul.ps-0
|
||
|
|
- project.reports.each do
|
||
|
|
li.d-flex.ps-0
|
||
|
|
=< "ID #{_1.id}: #{l(_1.created_at,format: :short)} #{_1.name}"
|
||
|
|
= link_to(_1, class: "btn btn-sm btn-link-secondary") do
|
||
|
|
i.bi.bi-folder-symlink
|
||
|
|
= button_to(project_reports_path(project), class: "btn btn-sm btn-link-secondary", params: { copy_from_id: _1.id }) do
|
||
|
|
i.bi.bi-copy
|
||
|
|
p
|
||
|
|
= link_to(new_project_report_path(project), class: "btn btn-secondary") do
|
||
|
|
i.bi.bi-plus-lg
|