{% extends "base.html" %} {% block title %}{{ project.name }}{% endblock %} {% block content %}
Warehouse: {{ project.duckdb_path }} ·
Schema: {{ project.duckdb_schema }} ·
Profile: {{ project.profile }} ·
Target: {{ project.target }}
{{ s.description }}
{% endif %}
Path: {{ s.path }} · Pattern: {{ s.file_pattern }}
{% if s.tags %} · {% for t in s.tags %}{{ t }}{% endfor %}{% endif %}
{{ m.description }}
{% endif %}
{% if m.tags %}{% for t in m.tags %}{{ t }}{% endfor %}{% endif %}
{% if m.depends_on %}
· depends on: {% for d in m.depends_on %}{{ d }}{% if not loop.last %}, {% endif %}{% endfor %}
{% elif m.source %}
· source: {{ m.source }}
{% endif %}
code_version: {{ m.code_version }}
graph LR
{% for edge in dag.edges %} {{ edge[0] }} --> {{ edge[1] }}
{% endfor %}
{% endblock %}