{% extends "webpage/base.html" %} {% load staticfiles %} {% block title %}List of Places{% endblock %} {% block scriptHeader %} {% endblock %} {% block content %} {% if object_list %}

Places

{% if user.is_authenticated %} (add another Place) {% endif %}
{% for object in object_list %} {% endfor %}
Name GeoNames
{% if user.is_authenticated %} {{ object }} (edit) {% else %} {{ object }} {% endif %} {{ object.geonames_id }}

Geovisualisation

{% else %} {% if user.is_authenticated %}

Places

create a new location/place

{% endif %} {% endif %} {% endblock %}