{% extends "base.html" %} {% block title %}{{ property|default('Property') }} - ActingWeb{% endblock %} {% block content %}
← Properties

{{ property|default('Property') }} {% if is_read_only %}read-only{% endif %} {% if is_list_property %}list{% endif %}

{% if qual == 'n' %}

Property not found.

Back to properties

{% elif is_list_property %} {% if list_description %}

{{ list_description }}

{% endif %} {% if list_explanation %}

{{ list_explanation }}

{% endif %} {% if list_items %}
{% for item in list_items %} {% endfor %}
#Item
{{ loop.index0 }}{{ item }}
{% else %}

This list is empty.

{% endif %} {% else %}

Value

{{ value|default('') }}
{% if not is_read_only %}

Edit

Delete

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