From 3d1e543a6771b8c532ae90d06f5094790d7f39f1 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 28 Jan 2020 18:22:58 +0000
Subject: [PATCH] Put full vehicle number and link to the map in vehicles.html tpl

---
 lib/Output.php          |    4 ++++
 templates/vehicles.html |    4 +++-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/lib/Output.php b/lib/Output.php
index 0fda9ab..be23ebb 100644
--- a/lib/Output.php
+++ b/lib/Output.php
@@ -59,6 +59,10 @@
 		ksort($vehicles);
 		
 		$dbMapping = $this->db->getAllByNum();
+		foreach($dbMapping as &$vehicle) {
+			$vehicle['vehicle'] = $this->vehicleTypes->getByNumber($vehicle['num']);
+		}
+		unset($vehicle);
 		ksort($dbMapping);
 		
 		if($saveConfig) {
diff --git a/templates/vehicles.html b/templates/vehicles.html
index 63fc393..d44a311 100644
--- a/templates/vehicles.html
+++ b/templates/vehicles.html
@@ -91,7 +91,9 @@
 {% for map in mapping %}
 <tr>
 <td>
-{{ map.num | e }}
+<a href="https://mpk.jacekk.net/map.html#!{{ map.vehicle.num }}" class="low{{ map.vehicle.low | default }}">
+{{ map.vehicle.num | e }}
+</a>
 </td>
 <td>
 {{ map.line | default('?') | e }}

--
Gitblit v1.9.1