diff options
author | Martin Green <martin.speleo@gmail.com> | 2023-05-08 01:10:43 +0100 |
---|---|---|
committer | Martin Green <martin.speleo@gmail.com> | 2023-05-08 01:10:43 +0100 |
commit | f7fca58c57890294691f852375c2a1d142da35a0 (patch) | |
tree | 2b6ad9464fb2f227e630b41ea80adc962dab7282 /templates/entrance_html.kml | |
parent | ea7c29a54ec3293cc49f1e11a5bf72ca2b44c6eb (diff) | |
download | troggle-f7fca58c57890294691f852375c2a1d142da35a0.tar.gz troggle-f7fca58c57890294691f852375c2a1d142da35a0.tar.bz2 troggle-f7fca58c57890294691f852375c2a1d142da35a0.zip |
Start of creating kmz file, with entrance photos and links to expo.survex.com
Diffstat (limited to 'templates/entrance_html.kml')
-rw-r--r-- | templates/entrance_html.kml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/entrance_html.kml b/templates/entrance_html.kml new file mode 100644 index 0000000..b45b11b --- /dev/null +++ b/templates/entrance_html.kml @@ -0,0 +1,55 @@ +<dl> + <a href="{{entrance.cavelist.0.url }}">Cave: {{entrance.cavelist.0.name }}</a> + {% if entrance.marking %} + <dt>Marking</dt><dd>{{ entrance.marking_val|safe }}</dd> + {% endif %} + {% if entrance.marking_comment %} + <dt>Marking Comment</dt><dd>{{ entrance.marking_comment|safe }}</dd> + {% endif %} + {% if entrance.findability %} + <dt>Findability</dt><dd>{{ entrance.findability_val|safe }}</dd> + {% endif %} + {% if entrance.findability_comment %} + <dt>Findability Comment</dt><dd>{{ entrance.findability_comment|safe }}</dd> + {% endif %} + {% if entrance.location_description %} + <dt>Location</dt><dd>{{ entrance.location_description|safe }}</dd> + {% endif %} + {% if entrance.approach %} + <dt>Approach</dt><dd>{{ entrance.approach|safe }}</dd> + {% endif %} + {% if entrance.map_description %} + <dt>Map</dt><dd>{{ entrance.map_description|safe }}</dd> + {% endif %} + {% if entrance.underground_description %} + <dt>Underground</dt><dd>{{ entrance.underground_description|safe }}</dd> + {% endif %} + {% if entrance.photo %} + <dt>Photo</dt><dd>{{ entrance.photo|safe }}</dd> + {% endif %} + {% if entrance.entrance_description %} + <dt>Description</dt><dd>{{ entrance.entrance_description|safe }}</dd> + {% endif %} + {% if entrance.explorers %} + <dt>Explorers</dt><dd>{{ entrance.explorers|safe }}</dd> + {% endif %} + {% if entrance.northing %} + <dt>Location</dt><dd>?BMN? Northing: {{ entrance.northing|safe }}, Easting: {{ entrance.easting|safe }}, {{ entrance.alt|safe }}m</dd> + {% endif %} + {% if entrance.tag_station %} + <dt>Tag Location</dt><dd>{{ entrance.tag_station }} {{ entrance.tag.latlong.0|floatformat:5 }}N {{ entrance.tag.latlong.1|floatformat:5 }}E - UTM33 {{ entrance.tag.y|floatformat:0 }}, {{ entrance.tag.x|floatformat:0 }}, {{ entrance.tag.z|floatformat:0 }}m</dd> + {% endif %} + {% if entrance.bearings %} + <dt>Bearings</dt><dd>{{ entrance.bearings|safe }}</dd> + {% endif %} + {% if entrance.exact_station %} + <dt>Exact Station</dt><dd>{{ entrance.exact_station|safe }} {{ entrance.exact_location.latlong.0|floatformat:5 }}N {{ entrance.exact_location.latlong.1|floatformat:5 }}E - UTM33 {{ entrance.exact_location.y|floatformat:0 }}, {{ entrance.exact_location.x|floatformat:0 }}, {{ entrance.exact_location.z|floatformat:0 }}m</dd> + {% endif %} + {% if entrance.other_station %} + <dt>Other Station</dt><dd>{{ entrance.other_station|safe }} + {% if entrance.other_description %} + - {{ entrance.other_description|safe }} + {% endif %} {{ entrance.other_location.latlong.0|floatformat:5 }}N {{ entrance.other_location.latlong.1|floatformat:5 }}E - UTM33 {{ entrance.other_location.y|floatformat:0 }}, {{ entrance.other_location.x|floatformat:0 }}, {{ entrance.other_location.z|floatformat:0 }}m + </dd> + {% endif %} +</dl> |