mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 12:12:58 +00:00
- Add SWOT Analysis Expert direct access agent (free, JotForm integration) - Use existing 'analysis' category instead of creating new category - Remove 10+ redundant create_* management commands for cleaner codebase - Update CLAUDE.md with simplified JSON + populate_agents workflow - Emphasize using existing categories to avoid proliferation - Clean up agent creation architecture for Railway scalability - All agents now follow unified JSON config approach 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
677 B
HTML
38 lines
677 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}SWOT Analysis Expert - Quantum Tasks AI{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<style>
|
|
.main-container {
|
|
max-width: none;
|
|
padding: 0;
|
|
height: calc(100vh - 80px);
|
|
}
|
|
.iframe-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.iframe-container iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
display: block;
|
|
}
|
|
.footer {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="iframe-container">
|
|
<iframe
|
|
src="{{ form_url }}"
|
|
frameborder="0"
|
|
scrolling="auto"
|
|
title="SWOT Analysis Expert">
|
|
</iframe>
|
|
</div>
|
|
{% endblock %} |