{% extends "base.html" %} {% block title %}Flows - Lamb{% endblock %} {% block body %}
{% include "_page_header.html" with header_label="Automation" header_title="Flows" header_description="Build and manage your automations." %}
{% csrf_token %}
{% csrf_token %}
{% if import_error %}
{{ import_error }}
{% endif %} {% if flows %}
{% for flow in flows %}
{{ flow.name }} {{ flow.get_status_display }} · updated {{ flow.updated_at|timesince }} ago
{% if flow.description %}

{{ flow.description }}

{% endif %}
{% csrf_token %}
View Edit Export
{% csrf_token %}
{% endfor %}
{% else %}

No flows yet. Create your first automation!

{% csrf_token %}
{% endif %}
{% endblock %}