mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 16:12:56 +00:00
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>
42 lines
778 B
HTML
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 %} |