{% extends "app/website/templates/html/page.html" %} {% set title=doc and doc.name or "New Address" %} {% set docname=(doc and doc.name or "") %} {% macro render_fields(docfields) -%} {% for df in docfields -%} {% if df.fieldtype in ["Data", "Link"] -%}
{% elif df.fieldtype == "Check" -%}
{% elif df.fieldtype == "Select" -%}
{%- endif %} {%- endfor %} {%- endmacro %} {% block content %}

{{ title }}


{{ render_fields(meta.left_fields) }}
{{ render_fields(meta.right_fields) }}
{% endblock %}