- Add complete Project Hub & Workspace Interface implementation - New data models: Project, ModuleKit, Workspace - 3 fixture projects (cybermind.fr, cybermood.eu, secubox-c3) - 4 module kits (Security, Network, Automation, Media) - Workspace routes with project switching and kit installation - 4 workspace tabs: Overview, Module Kits, Devices, Composer - New navigation item: Workspace (7th section) - Remove all glowing effects from UI - Remove Command Center widget glow and backdrop blur - Remove device status indicator glow - Remove toggle button glow effects - Extend DataStore with 13 new methods for workspace management - Add 270+ lines of workspace-specific CSS with responsive layouts - Create workspace templates and result partials 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
32 lines
936 B
HTML
32 lines
936 B
HTML
{% extends theme_template %}
|
|
{% block content %}
|
|
<section class="panel">
|
|
<a href="/?theme=secubox" class="btn ghost">← Back to Catalog</a>
|
|
<header class="panel-head">
|
|
<div>
|
|
<h2>{{ module.name }}</h2>
|
|
<p class="muted">{{ module.category }} · Version {{ module.version }}</p>
|
|
</div>
|
|
<span class="pill pill-{{ module.health }}">{{ module.health|capitalize }}</span>
|
|
</header>
|
|
<p>{{ module.summary }}</p>
|
|
<div class="tag-row">
|
|
{% for tag in module.tags %}
|
|
<span class="chip small">#{{ tag }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
<h3>Secure Contexts</h3>
|
|
<ul>
|
|
{% for context in module.secure_contexts %}
|
|
<li>{{ context }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h3>Available Actions</h3>
|
|
<ul>
|
|
{% for action in module.actions %}
|
|
<li>{{ action }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endblock %}
|