From 0b6d2f4164b9d823fb2a49d9fb4e83242f695e09 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 30 Jun 2019 21:59:01 +0000
Subject: [PATCH] Update README - include requirements and info on running composer
---
templates/vehicles.html | 32 ++++++++++++++++++++++++++++----
1 files changed, 28 insertions(+), 4 deletions(-)
diff --git a/templates/vehicles.html b/templates/vehicles.html
index 3f04e0d..9c9d4e7 100644
--- a/templates/vehicles.html
+++ b/templates/vehicles.html
@@ -6,6 +6,11 @@
table {
border-collapse: collapse;
border-spacing: 0;
+ margin: 10px 0;
+}
+caption {
+ text-align: left;
+ font-size: 120%;
}
th, td {
border: 1px solid black;
@@ -13,6 +18,8 @@
}
td {
vertical-align: top;
+}
+table.center td {
text-align: center;
}
a {
@@ -32,8 +39,8 @@
}
</style>
-<table>
-
+<table class="center">
+<caption>Vehicles by line</caption>
<thead>
<tr>
{% for line in lines|keys %}
@@ -41,13 +48,12 @@
{% endfor %}
</tr>
</thead>
-
<tbody>
<tr>
{% for trips in lines %}
<td>
{% for trip in trips %}
-<a href="https://mpk.jacekk.net/map.html#!{{ prefix }}{{ trip.trip.id | e }}" class="low{{ trip.vehicle.low | default }}">
+<a href="https://mpk.jacekk.net/map.html#!{{ prefix }}{{ trip.vehicle.trip | e }}" class="low{{ trip.vehicle.low | default }}">
{{ trip.vehicle.num | default('<?>') | e }}<br />
</a>
{% endfor %}
@@ -55,6 +61,24 @@
{% endfor %}
</tr>
</tbody>
+</table>
+
+<table>
+<caption>Vehicles by type</caption>
+{% for type, vhcls in vehicles %}
+<tr>
+<th>{{ type }}</th>
+<td>{{ vhcls | length }}</td>
+<td>
+{% for vehicle in vhcls %}
+<a href="https://mpk.jacekk.net/map.html#!{{ prefix }}{{ vehicle.trip | e }}" class="low{{ vehicle.low | default }}">
+{{ vehicle.num | default('<?>') | e }}
+</a>
+{% endfor %}
+</td>
+</tr>
+{% endfor %}
+</table>
Generated at {{ "now" | date("Y-m-d H:i:s P") }}
--
Gitblit v1.9.1