quantumtaskai-caprover/templates/wrapper/iframe.html
thecyberlearn b0e8c917ef Initial clean CapRover deployment - no secrets
Complete Django AI agent marketplace with security optimizations
and clean deployment documentation without any API keys or secrets.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 10:50:55 +05:30

42 lines
778 B
HTML

{% extends 'base.html' %}
{% block title %}{{ page_title|default:"External Service" }} - Quantum Tasks AI{% endblock %}
{% block extra_css %}
<style>
/* Full-width iframe styling */
.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;
}
/* Hide footer for full-screen */
.footer {
display: none !important;
}
</style>
{% endblock %}
{% block content %}
<div class="iframe-container">
<iframe
src="{{ external_url }}"
frameborder="0"
scrolling="auto"
title="{{ page_title|default:'External Service' }}">
</iframe>
</div>
{% endblock %}