mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 08:52:58 +00:00
- Create dedicated template with header + JotForm iframe - Add ai_brand_strategist_view() and ai_brand_strategist_access() functions - Add dedicated URL routes /ai-brand-strategist/ and /ai-brand-strategist/access/ - Update marketplace buttons to use dedicated routes for consistent UX - Both CyberSec Career Navigator and AI Brand Strategist now show embedded forms - Follows established direct access agent architecture pattern 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
794 B
HTML
43 lines
794 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}AI Brand Strategist - Quantum Tasks AI{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<style>
|
|
/* Override main-container for full-width iframe */
|
|
.main-container {
|
|
max-width: none;
|
|
padding: 0;
|
|
height: calc(100vh - 80px); /* Account for header height */
|
|
}
|
|
|
|
.iframe-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.iframe-container iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
display: block;
|
|
}
|
|
|
|
/* Hide footer for this page */
|
|
.footer {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="iframe-container">
|
|
<iframe
|
|
src="{{ form_url }}"
|
|
frameborder="0"
|
|
scrolling="auto"
|
|
title="AI Brand Strategist">
|
|
</iframe>
|
|
</div>
|
|
{% endblock %} |