{% extends "base.html" %} {% load humanize %} {% block title %}Location Map{% endblock %} {% block extra_css %}{% endblock %} {% block content %} {% include "includes/sidenav.html" %}

Location Map

View locations around the world

{% for type in marker_types %} {{ type.name }} {% endfor %}

Locations

{% for location in locations %} {% if location.latitude and location.longitude %}

{{ location.name }}

{% if location.city or location.country %}

{% if location.city %}{{ location.city }}{% endif %} {% if location.city and location.country %},{% endif %} {% if location.country %}{{ location.country }}{% endif %}

{% endif %}
{% if location.logo %} {{ location.name }} logo {% endif %}
{% if marker_type == 'organizations' %} View Details {% endif %}
{% endif %} {% empty %}

No locations found

Try selecting a different location type

{% endfor %} this map was inspired by the map on OWASP Nest
{% endblock %} {% block extra_js %} {% endblock %}