- Implement full web interface with Go html/template server - Add GX component library (buttons, dialogs, tables, forms, etc.) - Create scene/performer/studio/movie detail and listing pages - Add Adult Empire scraper for additional metadata sources - Implement movie support with database schema - Add import and sync services for data management - Include comprehensive API and frontend documentation - Add custom color scheme and responsive layout 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
829 B
HTML
22 lines
829 B
HTML
<div id="modal-import" class="gx-modal-backdrop">
|
|
<div class="gx-modal">
|
|
<span class="gx-modal-close" onclick="closeModal('modal-import')">×</span>
|
|
|
|
<div class="gx-modal-header">
|
|
<h2 class="gx-modal-title">Import Everything</h2>
|
|
</div>
|
|
|
|
<div class="gx-modal-body">
|
|
This will import <strong>performers</strong>, <strong>studios</strong>, and
|
|
<strong>scenes</strong> from ThePornDB.
|
|
<br><br>
|
|
It may take several minutes depending on your system and internet speed.
|
|
</div>
|
|
|
|
<div class="gx-modal-footer">
|
|
<button class="btn-secondary" onclick="closeModal('modal-import')">Cancel</button>
|
|
<button class="btn" onclick="startBulkImport()">Start Import</button>
|
|
</div>
|
|
</div>
|
|
</div>
|