diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-27 22:44:44 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-27 22:44:44 +0300 |
commit | 62de8095d866a66bf1e47d36c10ff787d65bbb08 (patch) | |
tree | 97f5f75c757c6b6669fcbfdc6c4170f4a4d88877 | |
parent | 84e0b4fe3f7ee3a35b7e8bb4cc4f446bc4b895a7 (diff) | |
download | troggle-62de8095d866a66bf1e47d36c10ff787d65bbb08.tar.gz troggle-62de8095d866a66bf1e47d36c10ff787d65bbb08.tar.bz2 troggle-62de8095d866a66bf1e47d36c10ff787d65bbb08.zip |
lat long in italics
-rw-r--r-- | templates/stations.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/stations.html b/templates/stations.html index 0bc23f0..f63c250 100644 --- a/templates/stations.html +++ b/templates/stations.html @@ -13,8 +13,8 @@ <td style="text-align:left; width:240px"> {{s.name|safe}} </td> <td style="text-align:right; width:90px"> {{s.x|floatformat:2}} </td> <td style="text-align:right; width:90px"> {{s.y|floatformat:2}} </td> - <td style="text-align:right; width:90px"> {{s.lat|floatformat:6}} </td> - <td style="text-align:right; width:90px"> {{s.long|floatformat:6}} </td> + <td style="text-align:right; width:90px"> <em>{{s.lat|floatformat:6}} </em></td> + <td style="text-align:right; width:90px"> <em>{{s.long|floatformat:6}} </em></td> <td style="text-align:right; width:90px"> {{s.z|floatformat:0}} </td> <td style="text-align:right; width:90px"> {{s.srtm_diff.0|safe}} </td> <td style="text-align:right;" > {{s.entrance|safe}} </td> |