{% extends "base.html" %} {% set active_page = 'home' %} {% block title %}{{ space.title }} — agentplan{% endblock %} {% block body_class %}space-detail{% endblock %} {% block content %}
← Back to Spaces

{{ space.title }}

{% if space.description %}

{{ space.description }}

{% endif %}

Docs

{{ docs|length }}
{% if docs %}
{% for doc in docs %} 📄 {{ doc.filename }} {{ doc.size_display }} {{ doc.modified }} {% endfor %}
{% else %}
No docs in this space yet.
{% endif %}

Projects

{{ projects|length }}
{% if projects %}
{% for project in projects %} {{ project.title }} {{ project.done_count }}/{{ project.ticket_count }} tickets {{ project.status_label }} {% endfor %}
{% else %}
No projects in this space yet.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}