diff --git a/src/c3nav/editor/templates/editor/mapitems.html b/src/c3nav/editor/templates/editor/mapitems.html
index 4e66218a..394dd00f 100644
--- a/src/c3nav/editor/templates/editor/mapitems.html
+++ b/src/c3nav/editor/templates/editor/mapitems.html
@@ -14,6 +14,9 @@
{% endif %}
{{ item.name }} |
+ {% if has_elevator %}
+ {{ item.elevator }} |
+ {% endif %}
Edit |
{% endfor %}
diff --git a/src/c3nav/editor/views.py b/src/c3nav/editor/views.py
index 42a62baf..75228ba0 100644
--- a/src/c3nav/editor/views.py
+++ b/src/c3nav/editor/views.py
@@ -50,6 +50,7 @@ def list_mapitems(request, mapitem_type, level=None):
'mapitem_type': mapitem_type,
'title': mapitemtype._meta.verbose_name_plural,
'has_level': level is not None,
+ 'has_elevator': hasattr(mapitemtype, 'elevator'),
'level': level,
'items': filter_queryset_by_package_access(request, queryset),
})