{% macro render_snippet(ctx) %}
{% for line in ctx.lines %}
{{ line.number }} {{ line.text if line.text else " " }}
{% endfor %}
{% endmacro %} {% macro render_detail(ctx, colspan=5) %} {{ render_snippet(ctx) }} {% endmacro %}