Add basic functionality

This commit is contained in:
Bogdan Bagno
2024-09-16 02:10:08 +01:00
parent 4def3ac97f
commit 8630218c41
16 changed files with 130 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
h1= person.name
table
thead
tr
th Country
th Arrival
th Departure
th Duration (days)
tbody
- for stay in person.stays
tr
td = stay[:country].name + " (" + stay[:country].iso2 + ")"
td = stay[:arrival]
td = stay[:departure]
td = stay[:duration]