This commit is contained in:
anto
2025-01-08 16:44:39 +01:00
parent e60f704518
commit 2de78999f7
8 changed files with 77 additions and 20 deletions

View File

@@ -12,8 +12,8 @@ function display_projects() {
for (let i = 0; i < global_project_list.length; i++) {
datas += `<tr>
<th>${global_project_list[i].id}</th>
<th>${global_project_list[i].titre}</th>
<th>${formatDate(global_project_list[i].creation)}</th>
<th>${global_project_list[i].name}</th>
<th>${formatDate(global_project_list[i].start_date)}</th>
<th>${global_project_list[i].status}</th>
<th><button class="project_detail btn btn-primary">détails de ${global_project_list[i].titre}</button></th>
</tr>`;