{% extends "base.html" %} {% block title %}Sources โ€” LynxManager{% endblock %} {% block content %}

Sources

{{ sources|length }} source{{ '' if sources|length == 1 else 's' }} configured + Add source
{% if not sources %}
๐Ÿ“š
No sources configured yet
A source is one body of content Lynx indexes โ€” your code, a docs site, or a folder of PDFs. Add one to get started.
+ Add your first source
{% else %}
{% for s in sources %}
{{ s.name }}
type: {{ s.type }} {% if s.path %} ยท {{ s.path }}{% endif %}
{% if s.locked %} ๐Ÿ”’ locked {% endif %} {% if s.drift_severity == "critical" %} drift: critical {% elif s.drift_severity == "warning" %} drift: warning {% endif %} {% if s.chunk_count is not none %} {{ s.chunk_count }} chunks {% endif %} โ†’
{% endfor %}
{% endif %} {% endblock %}