From a937d652d178b59039a521271cfea151f6c18344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Medina?= Date: Tue, 24 Dec 2024 15:38:40 +0100 Subject: [PATCH] fix: table comments and style --- .../data-ready-s13.component.html | 145 ++++++++++-------- 1 file changed, 85 insertions(+), 60 deletions(-) diff --git a/src/app/map/data-ready-s13/data-ready-s13.component.html b/src/app/map/data-ready-s13/data-ready-s13.component.html index 787e3a2c..235e7f86 100644 --- a/src/app/map/data-ready-s13/data-ready-s13.component.html +++ b/src/app/map/data-ready-s13/data-ready-s13.component.html @@ -1,12 +1,15 @@

Data ready for S13

-

Select the white data and Copy with Control + C (Windows) or equivalent on Mac, Linux

- On Word side, click on -first row, third column- then right click and Paste with option - 'overwrite cells' + Select all the rows (table 1 or table 2, but not both) and + copy with Control + C (Windows) or equivalent on Mac, Linux +

+

+ On Word side, select all the rows, then paste with option + 'keep only text'


-
+
@for (territories of territoriesChunks; track $index) { @@ -48,69 +51,91 @@

- - - - - - - - + + + + + + + + @for (t of territories; track $index) { - @if (t.participants.at(-1)) { - - } - @if (t.participants.at(-2)) { - - } - @if (t.participants.at(-3)) { - - } - @if (t.participants.at(-4)) { - - } + + + + + + + - @if (t.assignedDates.at(-1)) { - - } - @if (t.returnedDates.at(-1)) { - - } - @if (t.assignedDates.at(-2)) { - - } - @if (t.returnedDates.at(-2)) { - - } - @if (t.assignedDates.at(-3)) { - - } - @if (t.returnedDates.at(-3)) { - - } - @if (t.assignedDates.at(-4)) { - - @if (t.returnedDates.at(-4)) { - - } - } + + + + + + + + + + + + + + + }
{{ (t.participants.at(-1) | participantPipe)?.name }}{{ (t.participants.at(-2) | participantPipe)?.name }}{{ (t.participants.at(-3) | participantPipe)?.name }}{{ (t.participants.at(-4) | participantPipe)?.name }} + {{ (t.participants.at(-1) | participantPipe)?.name }} + + {{ (t.participants.at(-2) | participantPipe)?.name }} + + {{ (t.participants.at(-3) | participantPipe)?.name }} + + {{ (t.participants.at(-4) | participantPipe)?.name }} +
{{ t.assignedDates.at(-1) | translocoDate: { dateStyle: "short" } }}{{ t.returnedDates.at(-1) | translocoDate: { dateStyle: "short" } }} - {{ t.assignedDates.at(-2) | translocoDate: { dateStyle: "short" } }} - - {{ t.returnedDates.at(-2) | translocoDate: { dateStyle: "short" } }} - - {{ t.assignedDates.at(-3) | translocoDate: { dateStyle: "short" } }} - - {{ t.returnedDates.at(-3) | translocoDate: { dateStyle: "short" } }} - - {{ t.assignedDates.at(-4) | translocoDate: { dateStyle: "short" } }} - - {{ t.returnedDates.at(-4) | translocoDate: { dateStyle: "short" } }} - + {{ + t.assignedDates[t.participants.length - 1] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.returnedDates[t.participants.length - 1] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.assignedDates[t.participants.length - 2] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.returnedDates[t.participants.length - 2] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.assignedDates[t.participants.length - 3] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.returnedDates[t.participants.length - 3] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.assignedDates[t.participants.length - 4] + | translocoDate: { dateStyle: "short" } + }} + + {{ + t.returnedDates[t.participants.length - 4] + | translocoDate: { dateStyle: "short" } + }} +