diff options
Diffstat (limited to 'templates/cave_debug.html')
-rw-r--r-- | templates/cave_debug.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/templates/cave_debug.html b/templates/cave_debug.html index c4df57b..e9076d6 100644 --- a/templates/cave_debug.html +++ b/templates/cave_debug.html @@ -11,15 +11,17 @@ <tr><th>entrance</th> <th>ent slug</th> <th>Best station</th> -<th>**</th> +<th>url</th> </tr> {% for ent in ents %} +{% if ent.bearings %} <tr> + <td> #{{ent.id}} {{ent}} </td> <td> - {{ent.slug}} + {{ent.slug}} </td> <td> {% if ent.best_station %}{{ent.best_station}}{% endif %} @@ -27,7 +29,10 @@ <td> {% if ent.best_station %}{{ent.best_station_object.latlong}}{% endif %} </td> - + <td> + {{ent.bearings}} + </td> +{% endif %} {% endfor %} </table> |