{% if has_code or has_properties or has_description %}
{% if has_code %}
Code Context
{% for code_line in code_lines_with_metadata %}
{{ code_line.number }} {{ code_line.text }}
{% endfor %}
{% endif %} {% if has_properties or has_description %}
Additional Details
{% if has_description %}
Description: {{ description }}
{% endif %} {% for prop in formatted_properties %} {% if prop.is_complex %}
{{ prop.formatted_key }}
{{ prop.formatted_value }}
{% else %}
{{ prop.formatted_key }} {{ prop.formatted_value }}
{% endif %} {% endfor %}
{% endif %}
{% endif %}