{% extends "base.html" %} {% block title %}{{ model.name }}{% endblock %} {% block content %}

{{ model.name }} [{{ model.kind }}]

{{ model.description or '' }}

Materialization: {{ model.materialization }} · code_version: {{ model.code_version }} {% if model.tags %} · {% for t in model.tags %}{{ t }}{% endfor %}{% endif %}

{% if model.depends_on %}

Depends on

{% elif model.source %}

Source

{{ model.source }}

{% endif %} {% if model.extraction %}

Extraction

Backend: {{ model.extraction.backend }}

{% if model.extraction.options %}
{{ model.extraction.options | tojson(indent=2) }}
{% endif %} {% endif %} {% if model.transform %}

Transform

Module: {{ model.transform.module }}

{% endif %} {% if model.fields %}

Fields

{% for f in model.fields %} {% endfor %}
NameDescription
{{ f.name }}{{ f.description or '' }}
{% endif %} {% if model.tests %}

Tests

{% endif %} {% if last_run %}

Last run

{% if last_run.errors %} {% endif %}
processed{{ last_run.documents_processed }}
skipped{{ last_run.documents_skipped }}
rows written{{ last_run.rows_written }}
duration (s){{ last_run.duration_seconds }}
errors
{{ last_run.errors | join('\n') }}
{% endif %} {% endblock %}