mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 19:52:57 +00:00
- External service wrapper system for JotForm, Zapier integrations - Simple template-based approach (iframe, landing, redirect) - Rich social media previews with Open Graph and Twitter Card tags - Professional social preview image for branded sharing - Updated documentation with usage examples 🤖 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 %} |