mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 18:32:59 +00:00
- Reduce template from 2024+ lines to 769 lines (62% reduction) - Replace extensive inline CSS with template prototype framework - Modernize JavaScript from SocialAdsModule to SocialAdsUtils pattern - Convert to component-based architecture using template includes - Remove duplicate processing view and clean up unused imports - Enhance results display with rich social ad formatting - Maintain all existing functionality and user experience 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
896 B
HTML
21 lines
896 B
HTML
<div class="agent-widget widget-wide results-container" id="resultsContainer" style="display: none;">
|
|
<div class="widget-header">
|
|
<h3 class="widget-title">
|
|
<span class="widget-icon">📊</span>
|
|
{{ results_title|default:"Results" }}
|
|
</h3>
|
|
<span class="status-badge">Success</span>
|
|
</div>
|
|
|
|
<div class="widget-content">
|
|
<div class="results-content" id="resultsContent">
|
|
<!-- Results will be populated here by JavaScript -->
|
|
</div>
|
|
|
|
<div class="results-actions action-buttons">
|
|
<button onclick="copyResults()" class="btn btn-primary">📋 Copy Results</button>
|
|
<button onclick="downloadResults()" class="btn btn-secondary">💾 Download</button>
|
|
<button onclick="resetForm()" class="btn btn-secondary">🔄 New Request</button>
|
|
</div>
|
|
</div>
|
|
</div> |