2026-08-09 01:45:05 +02:00
|
|
|
|
{% extends "base.html" %}
|
2026-08-11 02:31:55 +02:00
|
|
|
|
{% block title %}Spaces — {{ site_name }}{% endblock %}
|
2026-08-09 01:45:05 +02:00
|
|
|
|
{% block content %}
|
2026-08-11 02:31:55 +02:00
|
|
|
|
<h1>Spaces</h1>
|
|
|
|
|
|
<p class="muted">
|
|
|
|
|
|
Co-creation spaces for your tenant.
|
2026-08-12 01:30:05 +02:00
|
|
|
|
Page content will live as markdown in Forgejo-backed repositories.
|
2026-08-11 02:31:55 +02:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{% if spaces %}
|
|
|
|
|
|
<ul class="space-list" style="list-style:none;padding:0;margin:1.5rem 0 0;">
|
|
|
|
|
|
{% for space in spaces %}
|
|
|
|
|
|
<li class="card" style="margin-top:0.75rem;">
|
2026-08-12 01:30:05 +02:00
|
|
|
|
<a href="{% url 'spaces:detail' space.slug %}" style="color:inherit;text-decoration:none;">
|
|
|
|
|
|
<strong>{{ space.title }}</strong>
|
|
|
|
|
|
<span class="muted"> · {{ space.slug }}</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
{% if space.description %}
|
|
|
|
|
|
<p class="muted" style="margin:0.35rem 0 0;font-size:0.95rem;">{{ space.description }}</p>
|
|
|
|
|
|
{% endif %}
|
2026-08-11 02:31:55 +02:00
|
|
|
|
</li>
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
<h2 style="margin-top:0;">No spaces yet</h2>
|
|
|
|
|
|
<p class="muted" style="margin-bottom:0;">
|
2026-08-12 01:30:05 +02:00
|
|
|
|
Operators can seed a space via Django admin (tenant-matched).
|
|
|
|
|
|
Create-space UI and Forgejo binding land next (T04–T06).
|
2026-08-11 02:31:55 +02:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
2026-08-09 01:45:05 +02:00
|
|
|
|
{% endblock %}
|