diff options
author | Julien Dessaux | 2021-09-11 12:27:59 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-09-11 12:27:59 +0200 |
commit | aff4790d22728d89e7e2dac8af262c92087b5b39 (patch) | |
tree | a9e4ccae95529835abb0b18e856f3f40b98c0f8e /internal/webui/html/specificStop.html | |
parent | Changed the way html pages title is set (diff) | |
download | trains-aff4790d22728d89e7e2dac8af262c92087b5b39.tar.gz trains-aff4790d22728d89e7e2dac8af262c92087b5b39.tar.bz2 trains-aff4790d22728d89e7e2dac8af262c92087b5b39.zip |
Piece evry last week changes together in a big rewrite of the webui
Diffstat (limited to 'internal/webui/html/specificStop.html')
-rw-r--r-- | internal/webui/html/specificStop.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/internal/webui/html/specificStop.html b/internal/webui/html/specificStop.html new file mode 100644 index 0000000..5916927 --- /dev/null +++ b/internal/webui/html/specificStop.html @@ -0,0 +1,16 @@ +{{ define "title"}}Horaires des prochains trains à {{ .Stop }}{{ end }} +{{ template "base" . }} + +{{ define "main" }} +<h3>Horaires des prochains trains à {{ .Stop }}</h3> +<table> + <thead> + <tr><th>Arrivée en gare</th><th>Direction</th></tr> + </thead> + <tbody> + {{ range $i, $elt := .Departures }} + <tr{{ if odd $i }} style="color:#111111;"{{ end }}><td>{{ .Arrival }}</td><td>{{ .Direction }}</td></tr> + {{ end }} + </tbody> +</table> +{{ end }} |