|  |  | 
 |  |  | <!DOCTYPE html> | 
 |  |  | <title>Vehicles on lines (TTSS-based)</title> | 
 |  |  | <meta charset="utf-8" /> | 
 |  |  | <meta name="viewport" content="width=device-width, initial-scale=1" /> | 
 |  |  |  | 
 |  |  | <style type="text/css"> | 
 |  |  | 
 |  |  | {% endfor %} | 
 |  |  | </table> | 
 |  |  |  | 
 |  |  | <table> | 
 |  |  | <caption>Vehicles in TTSS</caption> | 
 |  |  | <thead> | 
 |  |  | <tr> | 
 |  |  | <th>Vehicle</th> <th>Line</th> <th>Last seen</th> | 
 |  |  | </tr> | 
 |  |  | </thead> | 
 |  |  | {% for map in mapping %} | 
 |  |  | <tr> | 
 |  |  | <td> | 
 |  |  | <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 }} | 
 |  |  | </td> | 
 |  |  | <td> | 
 |  |  | {{ map.date | time_diff | default('now') }} | 
 |  |  | </td> | 
 |  |  | </tr> | 
 |  |  | {% endfor %} | 
 |  |  | </table> | 
 |  |  |  | 
 |  |  | Generated at {{ "now" | date("Y-m-d H:i:s P") }} | 
 |  |  |  | 
 |  |  | </table> |