rename Point to POI

This commit is contained in:
Laura Klünder 2017-07-08 16:29:12 +02:00
parent fb65549974
commit f2913dd8ac
8 changed files with 59 additions and 16 deletions

View file

@ -61,7 +61,7 @@ def space_detail(request, level, pk):
'can_edit': request.changeset.can_edit(request),
'child_models': [child_model(request.changeset.wrap_model(model_name), kwargs={'space': pk}, parent=space)
for model_name in ('Hole', 'Area', 'Stair', 'Obstacle', 'LineObstacle', 'Column', 'Point')],
for model_name in ('Hole', 'Area', 'Stair', 'Obstacle', 'LineObstacle', 'Column', 'POI')],
'geometry_url': '/api/editor/geometries/?space='+pk,
})