Files @ 70b8aa07aee4
Branch filter:

Location: website/conservancy/worldmap/templates/kml

bsturmfels
Simplify settings and move some standard settings into settings.py

These were previously in djangocommonsettings.py, but don't ever vary between
development and production environments.
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
  <Document>
    <Placemark>
      <name>{{ location.name }}</name>
      <description>
        <![CDATA[
          {{ location.html_description }}
        ]]>
      </description>
      <Point>
        <coordinates>{{ location.latitude }},{{ location.longitude }}</coordinates>
      </Point>
    </Placemark>
  </Document>
</kml>