mirror of
https://github.com/sassanix/Warracker.git
synced 2026-05-04 15:29:11 -05:00
818ceb5084
- Moved warranty status row to the bottom of cards for better visual hierarchy in both grid and list views. - Ensured real-time UI updates on tag edits and deletions, fixing stale tag info across the app. - Added missing tag-related translation keys and warranty addition success messages across 17+ languages. - Resolved caching issues by updating service worker logic, asset versioning, and nginx headers. - Removed redundant Docker Compose commands causing migration duplication during updates. - Enhanced CSV import to support flexible date formats using `dateutil.parser`, improving user experience. - Fixed warranty duration selection limits by increasing max values in frontend and backend with DB migration. - Improved Paperless-ngx integration with duplicate document detection and user-friendly linking. - Fixed DB migration permission issues by granting `CREATEROLE` and removing redundant grants. - Restored missing product photos by correcting a broken image loader function call.
1148 lines
79 KiB
HTML
1148 lines
79 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<!-- Authentication redirect script -->
|
||
<script src="auth-redirect.js?v=20250119001" data-protected="true"></script>
|
||
|
||
<!-- Include authentication script first to handle login state immediately -->
|
||
<script src="include-auth-new.js?v=20250119001"></script>
|
||
|
||
<!-- File utilities script for secure file handling -->
|
||
<script src="file-utils.js?v=20250119001"></script>
|
||
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Warracker - Warranty Tracker</title>
|
||
<!-- Add standard favicon.ico link -->
|
||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||
<!-- Replace the old favicon link -->
|
||
<!-- <link rel="icon" type="image/png" href="img/favicon.png"> -->
|
||
<!-- Add new favicon links -->
|
||
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png?v=2">
|
||
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png?v=2">
|
||
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon-512x512.png">
|
||
<link rel="manifest" href="manifest.json">
|
||
<link rel="stylesheet" href="style.css?v=20250119001">
|
||
<script src="theme-loader.js?v=20250119001"></script> <!-- Apply theme early -->
|
||
|
||
<!-- Font Awesome for icons -->
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
<!-- Load header fix styles to ensure consistent header styling -->
|
||
<link rel="stylesheet" href="header-fix.css?v=20250119001">
|
||
<!-- Load fix for auth buttons -->
|
||
<script src="fix-auth-buttons-loader.js?v=20250119001"></script>
|
||
<!-- Mobile Header specific styles -->
|
||
<link rel="stylesheet" href="mobile-header.css?v=20250119001">
|
||
|
||
<!-- i18next Local Scripts -->
|
||
<script src="js/lib/i18next.min.js?v=20250119001"></script>
|
||
<script src="js/lib/i18nextHttpBackend.min.js?v=20250119001"></script>
|
||
<script src="js/lib/i18nextBrowserLanguageDetector.min.js?v=20250119001"></script>
|
||
|
||
<!-- i18n Configuration -->
|
||
<script src="js/i18n.js?v=20250119001"></script>
|
||
|
||
<!-- Immediate authentication check script -->
|
||
<script>
|
||
// Check if user is logged in immediately to hide buttons
|
||
(function() {
|
||
if (localStorage.getItem('auth_token')) {
|
||
// Hide login and register buttons immediately
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
console.log('Inline script: User is logged in, hiding login/register buttons');
|
||
|
||
// Hide auth container
|
||
var authContainer = document.getElementById('authContainer');
|
||
if (authContainer) {
|
||
authContainer.style.display = 'none';
|
||
authContainer.style.visibility = 'hidden';
|
||
}
|
||
|
||
// Show user menu
|
||
var userMenu = document.getElementById('userMenu');
|
||
if (userMenu) {
|
||
userMenu.style.display = 'block';
|
||
userMenu.style.visibility = 'visible';
|
||
}
|
||
|
||
// Update user info if possible
|
||
try {
|
||
var userInfo = JSON.parse(localStorage.getItem('user_info'));
|
||
if (userInfo) {
|
||
var displayName = userInfo.first_name || userInfo.username || 'User';
|
||
var userDisplayName = document.getElementById('userDisplayName');
|
||
if (userDisplayName) {
|
||
userDisplayName.textContent = displayName;
|
||
}
|
||
|
||
var userName = document.getElementById('userName');
|
||
if (userName) {
|
||
userName.textContent = (userInfo.first_name || '') + ' ' + (userInfo.last_name || '');
|
||
if (!userName.textContent.trim()) userName.textContent = userInfo.username || 'User';
|
||
}
|
||
|
||
var userEmail = document.getElementById('userEmail');
|
||
if (userEmail && userInfo.email) {
|
||
userEmail.textContent = userInfo.email;
|
||
}
|
||
}
|
||
} catch (e) {
|
||
console.error('Error updating user info:', e);
|
||
}
|
||
}, { once: true });
|
||
}
|
||
})();
|
||
</script>
|
||
|
||
<!-- Registration status check script -->
|
||
<script src="registration-status.js?v=20250119001"></script>
|
||
</head>
|
||
<body>
|
||
<!-- Header -->
|
||
<header>
|
||
<div class="container">
|
||
<div class="app-title">
|
||
<i class="fas fa-shield-alt"></i>
|
||
<h1>Warracker</h1>
|
||
</div>
|
||
<div class="nav-links">
|
||
<a href="index.html" class="nav-link active">
|
||
<i class="fas fa-home"></i> <span data-i18n="nav.home">Home</span>
|
||
</a>
|
||
<a href="status.html" class="nav-link">
|
||
<i class="fas fa-chart-pie"></i> <span data-i18n="nav.status">Status</span>
|
||
</a>
|
||
</div>
|
||
<!-- Group for right-aligned elements -->
|
||
<div class="header-right-group">
|
||
<div id="authContainer" class="auth-buttons">
|
||
<a href="login.html" class="auth-btn login-btn">
|
||
<i class="fas fa-sign-in-alt"></i> <span data-i18n="auth.login">Login</span>
|
||
</a>
|
||
<a href="register.html" class="auth-btn register-btn">
|
||
<i class="fas fa-user-plus"></i> <span data-i18n="auth.register">Register</span>
|
||
</a>
|
||
</div>
|
||
<div id="userMenu" class="user-menu" style="display: none;">
|
||
<button id="userMenuBtn" class="user-btn">
|
||
<i class="fas fa-user-circle"></i>
|
||
<span id="userDisplayName">User</span>
|
||
</button>
|
||
<div id="userMenuDropdown" class="user-menu-dropdown">
|
||
<div class="user-info">
|
||
<div id="userName" class="user-name">User Name</div>
|
||
<div id="userEmail" class="user-email">user@example.com</div>
|
||
</div>
|
||
<div class="user-menu-item">
|
||
<a href="settings-new.html" style="color: inherit; text-decoration: none; display: block;">
|
||
<i class="fas fa-cog"></i> <span data-i18n="nav.settings">Settings</span>
|
||
</a>
|
||
</div>
|
||
<div class="user-menu-item">
|
||
<i class="fas fa-info-circle"></i>
|
||
<a href="about.html" style="text-decoration: none; color: inherit;" data-i18n="nav.about">About</a>
|
||
</div>
|
||
<div class="user-menu-item" id="logoutMenuItem">
|
||
<i class="fas fa-sign-out-alt"></i> <span data-i18n="auth.logout">Logout</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div> <!-- End header-right-group -->
|
||
</div>
|
||
</header>
|
||
|
||
<!-- Main Content -->
|
||
<div class="container">
|
||
<div class="main-content">
|
||
|
||
<!-- Warranties List Panel -->
|
||
<div class="warranties-panel">
|
||
<!-- Panel Header -->
|
||
<div class="panel-header">
|
||
<h2 id="warrantiesPanelTitle" data-i18n="warranties.title">Your Warranties</h2>
|
||
<!-- ADD BUTTON CONTAINER AND REFRESH BUTTON WRAPPER HERE -->
|
||
<div class="panel-header-actions">
|
||
<div class="add-warranty-button-container">
|
||
<button id="showAddWarrantyBtn" class="btn btn-primary btn-sm">
|
||
<i class="fas fa-plus"></i> <span data-i18n="warranties.add_new">Add New Warranty</span>
|
||
</button>
|
||
</div>
|
||
<button id="refreshBtn" class="btn btn-secondary btn-sm" data-i18n-title="actions.refresh" title="Refresh List">
|
||
<i class="fas fa-sync-alt"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<!-- Filters and Search -->
|
||
<div class="filter-controls">
|
||
<div class="search-container" style="display: flex; width: 100%; gap: 8px; align-items: center; flex-wrap: nowrap;">
|
||
<!-- Make search box much longer, buttons only as wide as needed -->
|
||
<div class="search-box" style="flex: 2 1 400px; min-width: 200px; max-width: 1000px;">
|
||
<button id="searchBtn" class="search-btn" title="Search">
|
||
<i class="fas fa-search"></i>
|
||
</button>
|
||
<input type="text" id="searchWarranties" data-i18n-placeholder="warranties.search_placeholder" placeholder="Find by name, vendors, notes, tag, or serial number..." style="width: 100%; min-width: 200px;">
|
||
<button id="clearSearch" class="clear-search-btn" title="Clear search" style="display: none;">
|
||
<i class="fas fa-times"></i>
|
||
</button>
|
||
</div>
|
||
<div style="display: flex; gap: 8px; flex-wrap: nowrap; flex-shrink: 0; min-width: 0;">
|
||
<button id="exportBtn" class="export-btn" title="Export warranties" style="white-space: nowrap;">
|
||
<i class="fas fa-file-export"></i> <span data-i18n="actions.export">Export</span>
|
||
</button>
|
||
<button id="importBtn" class="import-btn" title="Import warranties from CSV" style="white-space: nowrap;">
|
||
<i class="fas fa-file-import"></i> <span data-i18n="actions.import">Import</span>
|
||
</button>
|
||
<button id="globalManageTagsBtn" class="export-btn" title="Manage all tags" style="white-space: nowrap;">
|
||
<i class="fas fa-tags"></i> <span data-i18n="actions.manage_tags">Manage Tags</span>
|
||
</button>
|
||
</div>
|
||
<input type="file" id="csvFileInput" accept=".csv" style="display: none;">
|
||
</div>
|
||
|
||
<div class="filter-options">
|
||
<div class="filter-group">
|
||
<label class="filter-label" data-i18n="filters.status">Status</label>
|
||
<select id="statusFilter" class="filter-select">
|
||
<option value="all" data-i18n="filters.all_status">All Status</option>
|
||
<option value="active" data-i18n="warranties.active">Active</option>
|
||
<option value="expiring" data-i18n="warranties.expiring_soon">Expiring Soon</option>
|
||
<option value="expired" data-i18n="warranties.expired">Expired</option>
|
||
</select>
|
||
</div>
|
||
|
||
<div class="filter-group">
|
||
<label class="filter-label" data-i18n="filters.tags">Tag</label>
|
||
<select id="tagFilter" class="filter-select">
|
||
<option value="all" data-i18n="filters.all_tags">All Tags</option>
|
||
<!-- Tag options will be populated by JavaScript -->
|
||
</select>
|
||
</div>
|
||
|
||
<div class="filter-group">
|
||
<label class="filter-label" data-i18n="filters.vendor">Vendor</label>
|
||
<select id="vendorFilter" class="filter-select">
|
||
<option value="all" data-i18n="filters.all_vendors">All Vendors</option>
|
||
<!-- Vendor options will be populated by JavaScript -->
|
||
</select>
|
||
</div>
|
||
|
||
<div class="filter-group">
|
||
<label class="filter-label" data-i18n="filters.warranty_type">Warranty Type</label>
|
||
<select id="warrantyTypeFilter" class="filter-select">
|
||
<option value="all" data-i18n="filters.all_types">All Types</option>
|
||
<!-- Warranty type options will be populated by JavaScript -->
|
||
</select>
|
||
</div>
|
||
|
||
<div class="filter-group">
|
||
<label class="filter-label" data-i18n="filters.sort_by">Sort By</label>
|
||
<select id="sortBy" class="filter-select">
|
||
<option value="expiration" data-i18n="filters.sort_expiration">Expiration Date</option>
|
||
<option value="purchase" data-i18n="filters.sort_purchase">Purchase Date</option>
|
||
<option value="age" data-i18n="filters.sort_age">Age</option>
|
||
<option value="name" data-i18n="filters.sort_name">Product Name</option>
|
||
<option value="vendor" data-i18n="filters.sort_vendor">Vendor</option>
|
||
<option value="warranty_type" data-i18n="filters.sort_warranty_type">Warranty Type</option>
|
||
</select>
|
||
</div>
|
||
|
||
<div class="view-switcher">
|
||
<label class="filter-label" data-i18n="filters.view">View</label>
|
||
<div class="view-buttons">
|
||
<button id="gridViewBtn" class="view-btn active" title="Grid View">
|
||
<i class="fas fa-th-large"></i>
|
||
</button>
|
||
<button id="listViewBtn" class="view-btn" title="List View">
|
||
<i class="fas fa-list"></i>
|
||
</button>
|
||
<button id="tableViewBtn" class="view-btn" title="Table View">
|
||
<i class="fas fa-table"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Scope View Toggle -->
|
||
<div class="admin-view-switcher" id="adminViewSwitcher" style="display: none;">
|
||
<label class="filter-label" data-i18n="filters.scope">Scope</label>
|
||
<div class="view-buttons">
|
||
<button id="personalViewBtn" class="view-btn active" title="View your warranties only">
|
||
<i class="fas fa-user"></i>
|
||
</button>
|
||
<button id="globalViewBtn" class="view-btn" title="View all users' warranties (read-only for others)">
|
||
<i class="fas fa-globe"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="warrantiesList" class="warranties-list grid-view">
|
||
<!-- Table headers for table view -->
|
||
<div class="table-view-header">
|
||
<tr>
|
||
<th data-i18n="warranties.product">Product</th>
|
||
<th data-i18n="warranties.purchase_date">Purchase Date</th>
|
||
<th data-i18n="warranties.expiration">Expiration</th>
|
||
<th data-i18n="warranties.status">Status</th>
|
||
<th data-i18n="warranties.actions">Actions</th>
|
||
</tr>
|
||
</div>
|
||
<!-- Warranties will be loaded here -->
|
||
<div class="empty-state" style="display: none;">
|
||
<i class="fas fa-box-open"></i>
|
||
<h3 data-i18n="warranties.no_warranties_title">No warranties yet</h3>
|
||
<p data-i18n="warranties.no_warranties_desc">Add your first warranty to get started</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- MOVE the Form Panel content below -->
|
||
<!-- Original <div class="form-panel"> should be removed from here -->
|
||
<div id="addWarrantyModal" class="modal-backdrop">
|
||
<div class="modal" style="max-width: 700px;"> <!-- Adjusted max-width for the wizard -->
|
||
<div class="modal-header">
|
||
<h3 class="modal-title" data-i18n="warranties.add_new">Add New Warranty</h3>
|
||
<button class="close-btn" data-dismiss="modal">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<!-- MOVE the entire original .form-panel content HERE -->
|
||
<div class="form-panel" style="box-shadow: none; padding: 0; background: none;">
|
||
<!-- Form Tabs -->
|
||
<div class="form-tabs" data-step="0">
|
||
<div class="form-tab active" data-tab="product-info" id="productInfoTabBtn">
|
||
<i class="fas fa-box"></i> <span data-i18n="warranties.product">Product</span>
|
||
</div>
|
||
<div class="form-tab" data-tab="warranty-details" id="warrantyDetailsTabBtn">
|
||
<i class="fas fa-shield-alt"></i> <span data-i18n="warranties.warranty">Warranty</span>
|
||
</div>
|
||
<div class="form-tab" data-tab="documents" id="documentsTabBtn">
|
||
<i class="fas fa-file-alt"></i> <span data-i18n="warranties.documents">Documents</span>
|
||
</div>
|
||
<div class="form-tab" data-tab="tags" id="tagsTabBtn">
|
||
<i class="fas fa-tags"></i> <span data-i18n="warranties.tags">Tags</span>
|
||
</div>
|
||
<div class="form-tab" data-tab="summary" id="summaryTabBtn">
|
||
<i class="fas fa-check-circle"></i> <span data-i18n="warranties.summary">Summary</span>
|
||
</div>
|
||
</div>
|
||
<!-- Warranty Form -->
|
||
<form id="warrantyForm" novalidate>
|
||
<!-- Product Information Tab -->
|
||
<div class="tab-content active" id="product-info">
|
||
<div class="form-group">
|
||
<label for="productName" data-i18n="warranties.product_name">Product Name</label>
|
||
<input type="text" id="productName" name="product_name" class="form-control" required>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="productUrl" data-i18n="warranties.product_url_optional">Product URL (Optional)</label>
|
||
<input type="text" id="productUrl" name="product_url" class="form-control" data-i18n-placeholder="warranties.product_url_placeholder" placeholder="https://example.com/product">
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.serial_numbers">Serial Numbers</label>
|
||
<div id="serialNumbersContainer">
|
||
<!-- Serial number inputs will be added dynamically -->
|
||
<input type="text" name="serial_numbers[]" class="form-control" style="margin-bottom: 8px;" data-i18n-placeholder="warranties.enter_serial_number" placeholder="Enter serial number">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="vendor" data-i18n="warranties.vendor_optional">Vendor (Optional)</label>
|
||
<input type="text" id="vendor" name="vendor" class="form-control" data-i18n-placeholder="warranties.vendor_placeholder" placeholder="e.g. Amazon, Best Buy, etc.">
|
||
</div>
|
||
</div>
|
||
<!-- Warranty Details Tab -->
|
||
<div class="tab-content" id="warranty-details">
|
||
<div class="form-group">
|
||
<label for="purchaseDate" data-i18n="warranties.purchase_date">Purchase Date</label>
|
||
<input type="date" id="purchaseDate" name="purchase_date" class="form-control" required>
|
||
</div>
|
||
|
||
<!-- Add Lifetime Checkbox -->
|
||
<div class="form-group">
|
||
<label class="lifetime-label">
|
||
<input type="checkbox" id="isLifetime" name="is_lifetime" value="true">
|
||
<span data-i18n="warranties.lifetime_warranty">Lifetime Warranty</span>
|
||
</label>
|
||
</div>
|
||
<!-- End Lifetime Checkbox -->
|
||
|
||
<!-- Warranty Entry Method Selection -->
|
||
<div class="form-group" id="warrantyEntryMethod">
|
||
<label data-i18n="warranties.warranty_entry_method">Warranty Entry Method</label>
|
||
<div class="warranty-method-options">
|
||
<label class="radio-option">
|
||
<input type="radio" id="durationMethod" name="warranty_method" value="duration" checked>
|
||
<span data-i18n="warranties.warranty_duration_option">Warranty Duration</span>
|
||
</label>
|
||
<label class="radio-option">
|
||
<input type="radio" id="exactDateMethod" name="warranty_method" value="exact_date">
|
||
<span data-i18n="warranties.exact_expiration_option">Exact Expiration Date</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="warrantyDurationFields">
|
||
<div class="form-group">
|
||
<label for="warrantyDurationYears" data-i18n="warranties.warranty_period">Warranty Period</label>
|
||
<div class="duration-inputs">
|
||
<div>
|
||
<input type="number" id="warrantyDurationYears" name="warranty_duration_years" class="form-control" min="0" max="999" data-i18n-placeholder="warranties.years_placeholder" placeholder="Years">
|
||
<small data-i18n="warranties.years">Years</small>
|
||
</div>
|
||
<div>
|
||
<input type="number" id="warrantyDurationMonths" name="warranty_duration_months" class="form-control" min="0" max="999" data-i18n-placeholder="warranties.months_placeholder" placeholder="Months">
|
||
<small data-i18n="warranties.months">Months</small>
|
||
</div>
|
||
<div>
|
||
<input type="number" id="warrantyDurationDays" name="warranty_duration_days" class="form-control" min="0" max="9999" data-i18n-placeholder="warranties.days_placeholder" placeholder="Days">
|
||
<small data-i18n="warranties.days">Days</small>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="exactExpirationField" style="display: none;">
|
||
<div class="form-group">
|
||
<label for="exactExpirationDate" data-i18n="warranties.expiration_date_label">Expiration Date</label>
|
||
<input type="date" id="exactExpirationDate" name="exact_expiration_date" class="form-control">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="warrantyType" data-i18n="warranties.warranty_type_optional">Warranty Type (Optional)</label>
|
||
<select id="warrantyType" name="warranty_type" class="form-control">
|
||
<option value="" data-i18n="warranties.select_warranty_type">Select warranty type...</option>
|
||
<option value="Standard" data-i18n="warranties.standard">Standard</option>
|
||
<option value="Extended" data-i18n="warranties.extended">Extended</option>
|
||
<option value="Manufacturer" data-i18n="warranties.manufacturer">Manufacturer</option>
|
||
<option value="Third Party" data-i18n="warranties.third_party">Third Party</option>
|
||
<option value="Store" data-i18n="warranties.store">Store</option>
|
||
<option value="Premium" data-i18n="warranties.premium">Premium</option>
|
||
<option value="Limited" data-i18n="warranties.limited">Limited</option>
|
||
<option value="Full" data-i18n="warranties.full">Full</option>
|
||
<option value="Parts Only" data-i18n="warranties.parts_only">Parts Only</option>
|
||
<option value="Labor Only" data-i18n="warranties.labor_only">Labor Only</option>
|
||
<option value="International" data-i18n="warranties.international">International</option>
|
||
<option value="Accidental Damage" data-i18n="warranties.accidental_damage">Accidental Damage</option>
|
||
<option value="other" data-i18n="warranties.other_custom">Other (Custom)</option>
|
||
</select>
|
||
<input type="text" id="warrantyTypeCustom" name="warranty_type_custom" class="form-control" style="display: none; margin-top: 8px;" data-i18n-placeholder="warranties.enter_custom_warranty_type_placeholder" placeholder="Enter custom warranty type">
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="currency" data-i18n="warranties.currency">Currency</label>
|
||
<select id="currency" name="currency" class="form-control">
|
||
<option value="USD">USD - US Dollar ($)</option>
|
||
<!-- Currency options will be populated by JavaScript -->
|
||
</select>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="purchasePrice" data-i18n="warranties.purchase_price_optional">Purchase Price (Optional)</label>
|
||
<div class="price-input-wrapper" id="addPriceInputWrapper">
|
||
<span class="currency-symbol" id="addCurrencySymbol">$</span>
|
||
<input type="number" id="purchasePrice" name="purchase_price" class="form-control" min="0" step="0.01" placeholder="0.00">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="notes" data-i18n="warranties.notes_optional">Notes (Optional)</label>
|
||
<textarea id="notes" name="notes" class="form-control" rows="3" data-i18n-placeholder="warranties.add_any_notes_placeholder" placeholder="Add any notes about this warranty..."></textarea>
|
||
</div>
|
||
</div>
|
||
<!-- Documents Tab -->
|
||
<div class="tab-content" id="documents">
|
||
<!-- Paperless-ngx Info Alert (hidden by default, shown when enabled) -->
|
||
<div id="paperlessInfoAlert" class="alert alert-info" style="display: none;">
|
||
<i class="fas fa-info-circle"></i>
|
||
<strong>Paperless-ngx Integration Enabled!</strong> You can now choose to store documents in your Paperless-ngx instance instead of locally.
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.product_photo_optional">Product Photo (Optional)</label>
|
||
<div class="file-input-wrapper">
|
||
<label for="productPhoto" class="file-input-label">
|
||
<i class="fas fa-camera"></i> <span data-i18n="warranties.choose_photo">Choose Photo</span>
|
||
</label>
|
||
<input type="file" id="productPhoto" name="product_photo" class="file-input" accept=".png,.jpg,.jpeg,.webp">
|
||
</div>
|
||
<div id="productPhotoFileName" class="file-name"></div>
|
||
<div id="productPhotoPreview" class="photo-preview" style="display: none;">
|
||
<img id="productPhotoImg" src="" alt="Product Photo Preview" style="max-width: 200px; max-height: 200px; border-radius: 8px; margin-top: 10px;">
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.invoice_receipt">Invoice/Receipt</label>
|
||
<!-- Storage Selection -->
|
||
<div id="invoiceStorageSelection" class="storage-selection" style="display: none;">
|
||
<div class="storage-options">
|
||
<label class="storage-option">
|
||
<input type="radio" name="invoiceStorage" value="local" checked>
|
||
<span class="storage-label">
|
||
<i class="fas fa-hdd"></i> <span data-i18n="warranties.store_locally">Store Locally</span>
|
||
</span>
|
||
</label>
|
||
<label class="storage-option">
|
||
<input type="radio" name="invoiceStorage" value="paperless">
|
||
<span class="storage-label">
|
||
<i class="fas fa-cloud"></i> <span data-i18n="warranties.store_in_paperless">Store in Paperless-ngx</span>
|
||
</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<div class="file-input-wrapper">
|
||
<label for="invoice" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="invoice" name="invoice" class="file-input" accept=".pdf,.png,.jpg,.jpeg">
|
||
</div>
|
||
<div id="fileName" class="file-name"></div>
|
||
<!-- Paperless Browse Button -->
|
||
<div id="invoicePaperlessBrowse" class="paperless-browse-section" style="display: none;">
|
||
<button type="button" class="btn btn-secondary btn-sm" onclick="openPaperlessBrowser('invoice')">
|
||
<i class="fas fa-search"></i> <span data-i18n="warranties.browse_paperless">Browse Paperless-ngx Documents</span>
|
||
</button>
|
||
<div id="selectedInvoiceFromPaperless" class="selected-paperless-doc" style="display: none;">
|
||
<span class="selected-doc-name"></span>
|
||
<button type="button" class="btn btn-danger btn-xs" onclick="clearPaperlessSelection('invoice')">
|
||
<i class="fas fa-times"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.product_manual_optional">Product Manual (Optional)</label>
|
||
<!-- Storage Selection -->
|
||
<div id="manualStorageSelection" class="storage-selection" style="display: none;">
|
||
<div class="storage-options">
|
||
<label class="storage-option">
|
||
<input type="radio" name="manualStorage" value="local" checked>
|
||
<span class="storage-label">
|
||
<i class="fas fa-hdd"></i> <span data-i18n="warranties.store_locally">Store Locally</span>
|
||
</span>
|
||
</label>
|
||
<label class="storage-option">
|
||
<input type="radio" name="manualStorage" value="paperless">
|
||
<span class="storage-label">
|
||
<i class="fas fa-cloud"></i> <span data-i18n="warranties.store_in_paperless">Store in Paperless-ngx</span>
|
||
</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<div class="file-input-wrapper">
|
||
<label for="manual" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="manual" name="manual" class="file-input" accept=".pdf,.png,.jpg,.jpeg">
|
||
</div>
|
||
<div id="manualFileName" class="file-name"></div>
|
||
<!-- Paperless Browse Button -->
|
||
<div id="manualPaperlessBrowse" class="paperless-browse-section" style="display: none;">
|
||
<button type="button" class="btn btn-secondary btn-sm" onclick="openPaperlessBrowser('manual')">
|
||
<i class="fas fa-search"></i> <span data-i18n="warranties.browse_paperless">Browse Paperless-ngx Documents</span>
|
||
</button>
|
||
<div id="selectedManualFromPaperless" class="selected-paperless-doc" style="display: none;">
|
||
<span class="selected-doc-name"></span>
|
||
<button type="button" class="btn btn-danger btn-xs" onclick="clearPaperlessSelection('manual')">
|
||
<i class="fas fa-times"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.files_zip_rar_optional">Files (ZIP/RAR, Optional)</label>
|
||
<div class="file-input-wrapper">
|
||
<label for="otherDocument" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="otherDocument" name="other_document" class="file-input" accept=".zip,.rar">
|
||
</div>
|
||
<div id="otherDocumentFileName" class="file-name"></div>
|
||
|
||
</div>
|
||
</div>
|
||
<!-- Tags Tab -->
|
||
<div class="tab-content" id="tags">
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.add_tags">Add Tags</label>
|
||
<p class="text-muted" data-i18n="warranties.add_tags_desc">Tags help you organize and filter your warranties</p>
|
||
|
||
<div class="tags-container">
|
||
<div class="selected-tags" id="selectedTags">
|
||
<!-- Selected tags will be displayed here -->
|
||
</div>
|
||
|
||
<div class="tags-dropdown">
|
||
<input type="text" id="tagSearch" class="form-control" data-i18n-placeholder="warranties.search_or_add_tag" placeholder="Search or add new tag...">
|
||
<div class="tags-list" id="tagsList">
|
||
<!-- Tag options will be populated by JavaScript -->
|
||
</div>
|
||
</div>
|
||
|
||
<div class="mt-10">
|
||
<button type="button" id="manageTagsBtn" class="btn btn-secondary btn-sm">
|
||
<i class="fas fa-cog"></i> <span data-i18n="actions.manage_tags">Manage Tags</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- Summary Tab -->
|
||
<div class="tab-content" id="summary">
|
||
<div class="summary-container">
|
||
<div class="summary-section">
|
||
<h4><i class="fas fa-box"></i> <span data-i18n="warranties.product_information">Product Information</span></h4>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.product_name">Product Name:</span>
|
||
<span id="summary-product-name" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.product_url">Product URL:</span>
|
||
<span id="summary-product-url" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.serial_numbers">Serial Numbers:</span>
|
||
<span id="summary-serial-numbers" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.vendor">Vendor:</span>
|
||
<span id="summary-vendor" class="summary-value">-</span>
|
||
</div>
|
||
</div>
|
||
<div class="summary-section">
|
||
<h4><i class="fas fa-shield-alt"></i> <span data-i18n="warranties.warranty_details">Warranty Details</span></h4>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.purchase_date">Purchase Date:</span>
|
||
<span id="summary-purchase-date" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.warranty_period">Warranty Period:</span>
|
||
<span id="summary-warranty-duration" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.warranty_type">Warranty Type:</span>
|
||
<span id="summary-warranty-type" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.purchase_price">Purchase Price:</span>
|
||
<span id="summary-purchase-price" class="summary-value">-</span>
|
||
</div>
|
||
</div>
|
||
<div class="summary-section">
|
||
<h4><i class="fas fa-file-alt"></i> <span data-i18n="warranties.documents">Documents</span></h4>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.product_photo">Product Photo:</span>
|
||
<span id="summary-product-photo" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.invoice_receipt">Invoice/Receipt:</span>
|
||
<span id="summary-invoice" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.product_manual">Product Manual:</span>
|
||
<span id="summary-manual" class="summary-value">-</span>
|
||
</div>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.files">Files:</span>
|
||
<span id="summary-other-document" class="summary-value">-</span>
|
||
</div>
|
||
</div>
|
||
<div class="summary-section">
|
||
<h4><i class="fas fa-tags"></i> <span data-i18n="warranties.tags">Tags</span></h4>
|
||
<div class="summary-item">
|
||
<span class="summary-label" data-i18n="warranties.selected_tags">Selected Tags:</span>
|
||
<div id="summary-tags" class="summary-value">-</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<button type="submit" class="btn btn-primary" id="submitWarrantyBtn" data-i18n="warranties.add_warranty">Add Warranty</button>
|
||
</div>
|
||
</div>
|
||
<!-- Tab Navigation -->
|
||
<div class="tab-navigation">
|
||
<button type="button" class="btn btn-secondary prev-tab" id="prevTabBtn">
|
||
<i class="fas fa-arrow-left"></i> <span data-i18n="warranties.previous_tab">Previous</span>
|
||
</button>
|
||
<button type="button" class="btn btn-primary next-tab" id="nextTabBtn">
|
||
<span data-i18n="warranties.next_tab">Next</span> <i class="fas fa-arrow-right"></i>
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div> <!-- End form-panel -->
|
||
</div> <!-- End modal-body -->
|
||
<!-- Optional: Add a modal footer if you want separate Cancel/Submit buttons -->
|
||
<!-- <div class="modal-footer">
|
||
<button class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
||
</div> -->
|
||
</div> <!-- End modal -->
|
||
</div> <!-- End addWarrantyModal -->
|
||
</div> <!-- End main-content -->
|
||
</div> <!-- End container -->
|
||
|
||
<!-- Edit Warranty Modal -->
|
||
<div id="editModal" class="modal-backdrop">
|
||
<div class="modal">
|
||
<div class="modal-header">
|
||
<h3 class="modal-title" data-i18n="warranties.edit_warranty">Edit Warranty</h3>
|
||
<button class="close-btn" data-dismiss="modal">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<!-- Tab Navigation -->
|
||
<div class="edit-tabs-nav">
|
||
<button type="button" class="edit-tab-btn active" data-tab="edit-product-info">
|
||
<i class="fas fa-box"></i> <span data-i18n="warranties.product">Product</span>
|
||
</button>
|
||
<button type="button" class="edit-tab-btn" data-tab="edit-warranty-details">
|
||
<i class="fas fa-shield-alt"></i> <span data-i18n="warranties.warranty">Warranty</span>
|
||
</button>
|
||
<button type="button" class="edit-tab-btn" data-tab="edit-documents">
|
||
<i class="fas fa-file-alt"></i> <span data-i18n="warranties.documents">Documents</span>
|
||
</button>
|
||
<button type="button" class="edit-tab-btn" data-tab="edit-tags">
|
||
<i class="fas fa-tags"></i> <span data-i18n="warranties.tags">Tags</span>
|
||
</button>
|
||
</div>
|
||
|
||
<form id="editWarrantyForm" novalidate>
|
||
<input type="hidden" id="editWarrantyId">
|
||
|
||
<!-- Product Info Tab -->
|
||
<div class="edit-tab-content active" id="edit-product-info">
|
||
<div class="form-group">
|
||
<label for="editProductName" data-i18n="warranties.product_name">Product Name</label>
|
||
<input type="text" id="editProductName" name="product_name" class="form-control" required>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="editProductUrl" data-i18n="warranties.product_url_optional">Product URL (Optional)</label>
|
||
<input type="text" id="editProductUrl" name="product_url" class="form-control" data-i18n-placeholder="warranties.product_url_placeholder" placeholder="https://example.com/product">
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.serial_numbers">Serial Numbers</label>
|
||
<div id="editSerialNumbersContainer">
|
||
<!-- Serial number inputs will be added dynamically -->
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="editVendor" data-i18n="warranties.vendor_optional">Vendor (Optional)</label>
|
||
<input type="text" id="editVendor" name="vendor" class="form-control" data-i18n-placeholder="warranties.vendor_placeholder" placeholder="e.g. Amazon, Best Buy, etc.">
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Warranty Details Tab -->
|
||
<div class="edit-tab-content" id="edit-warranty-details">
|
||
<div class="form-group">
|
||
<label for="editPurchaseDate" data-i18n="warranties.purchase_date">Purchase Date</label>
|
||
<input type="date" id="editPurchaseDate" name="purchase_date" class="form-control" required>
|
||
</div>
|
||
|
||
<!-- Add Lifetime Checkbox -->
|
||
<div class="form-group">
|
||
<label class="lifetime-label">
|
||
<input type="checkbox" id="editIsLifetime" name="is_lifetime" value="true">
|
||
<span data-i18n="warranties.lifetime_warranty">Lifetime Warranty</span>
|
||
</label>
|
||
</div>
|
||
<!-- End Lifetime Checkbox -->
|
||
|
||
<!-- Warranty Entry Method Selection -->
|
||
<div class="form-group" id="editWarrantyEntryMethod">
|
||
<label data-i18n="warranties.warranty_entry_method">Warranty Entry Method</label>
|
||
<div class="warranty-method-options">
|
||
<label class="radio-option">
|
||
<input type="radio" id="editDurationMethod" name="edit_warranty_method" value="duration" checked>
|
||
<span data-i18n="warranties.warranty_duration_option">Warranty Duration</span>
|
||
</label>
|
||
<label class="radio-option">
|
||
<input type="radio" id="editExactDateMethod" name="edit_warranty_method" value="exact_date">
|
||
<span data-i18n="warranties.exact_expiration_option">Exact Expiration Date</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="editWarrantyDurationFields">
|
||
<div class="form-group">
|
||
<label for="editWarrantyDurationYears" data-i18n="warranties.warranty_period">Warranty Period</label>
|
||
<div class="duration-inputs">
|
||
<div>
|
||
<input type="number" id="editWarrantyDurationYears" name="warranty_duration_years" class="form-control" min="0" max="999" data-i18n-placeholder="warranties.years_placeholder" placeholder="Years">
|
||
<small data-i18n="warranties.years">Years</small>
|
||
</div>
|
||
<div>
|
||
<input type="number" id="editWarrantyDurationMonths" name="warranty_duration_months" class="form-control" min="0" max="999" data-i18n-placeholder="warranties.months_placeholder" placeholder="Months">
|
||
<small data-i18n="warranties.months">Months</small>
|
||
</div>
|
||
<div>
|
||
<input type="number" id="editWarrantyDurationDays" name="warranty_duration_days" class="form-control" min="0" max="9999" data-i18n-placeholder="warranties.days_placeholder" placeholder="Days">
|
||
<small data-i18n="warranties.days">Days</small>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="editExactExpirationField" style="display: none;">
|
||
<div class="form-group">
|
||
<label for="editExactExpirationDate" data-i18n="warranties.expiration_date_label">Expiration Date</label>
|
||
<input type="date" id="editExactExpirationDate" name="exact_expiration_date" class="form-control">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="editWarrantyType" data-i18n="warranties.warranty_type_optional">Warranty Type (Optional)</label>
|
||
<select id="editWarrantyType" name="warranty_type" class="form-control">
|
||
<option value="" data-i18n="warranties.select_warranty_type">Select warranty type...</option>
|
||
<option value="Standard" data-i18n="warranties.standard">Standard</option>
|
||
<option value="Extended" data-i18n="warranties.extended">Extended</option>
|
||
<option value="Manufacturer" data-i18n="warranties.manufacturer">Manufacturer</option>
|
||
<option value="Third Party" data-i18n="warranties.third_party">Third Party</option>
|
||
<option value="Store" data-i18n="warranties.store">Store</option>
|
||
<option value="Premium" data-i18n="warranties.premium">Premium</option>
|
||
<option value="Limited" data-i18n="warranties.limited">Limited</option>
|
||
<option value="Full" data-i18n="warranties.full">Full</option>
|
||
<option value="Parts Only" data-i18n="warranties.parts_only">Parts Only</option>
|
||
<option value="Labor Only" data-i18n="warranties.labor_only">Labor Only</option>
|
||
<option value="International" data-i18n="warranties.international">International</option>
|
||
<option value="Accidental Damage" data-i18n="warranties.accidental_damage">Accidental Damage</option>
|
||
<option value="other" data-i18n="warranties.other_custom">Other (Custom)</option>
|
||
</select>
|
||
<input type="text" id="editWarrantyTypeCustom" name="warranty_type_custom" class="form-control" style="display: none; margin-top: 8px;" data-i18n-placeholder="warranties.enter_custom_warranty_type_placeholder" placeholder="Enter custom warranty type">
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="editCurrency" data-i18n="warranties.currency">Currency</label>
|
||
<select id="editCurrency" name="currency" class="form-control">
|
||
<option value="USD">USD - US Dollar ($)</option>
|
||
<!-- Currency options will be populated by JavaScript -->
|
||
</select>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="editPurchasePrice" data-i18n="warranties.purchase_price_optional">Purchase Price (Optional)</label>
|
||
<div class="price-input-wrapper" id="editPriceInputWrapper">
|
||
<span class="currency-symbol" id="editCurrencySymbol">$</span>
|
||
<input type="number" id="editPurchasePrice" name="purchase_price" class="form-control" min="0" step="0.01" placeholder="0.00">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="editNotes" data-i18n="warranties.notes_optional">Notes (Optional)</label>
|
||
<textarea id="editNotes" name="notes" class="form-control" rows="3" data-i18n-placeholder="warranties.add_any_notes_placeholder" placeholder="Add any notes about this warranty..."></textarea>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Documents Tab -->
|
||
<div class="edit-tab-content" id="edit-documents">
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.product_photo_optional">Product Photo (Optional)</label>
|
||
<div class="file-input-wrapper">
|
||
<label for="editProductPhoto" class="file-input-label">
|
||
<i class="fas fa-camera"></i> <span data-i18n="warranties.choose_photo">Choose Photo</span>
|
||
</label>
|
||
<input type="file" id="editProductPhoto" name="product_photo" class="file-input" accept=".png,.jpg,.jpeg,.webp">
|
||
</div>
|
||
<div id="editProductPhotoFileName" class="file-name"></div>
|
||
<div id="editProductPhotoPreview" class="photo-preview" style="display: none;">
|
||
<img id="editProductPhotoImg" src="" alt="Product Photo Preview" style="max-width: 200px; max-height: 200px; border-radius: 8px; margin-top: 10px;">
|
||
</div>
|
||
<div id="currentProductPhoto" class="mt-10"></div>
|
||
<button type="button" id="deleteProductPhotoBtn" class="btn btn-danger btn-sm mt-2" style="display:none;"><i class="fas fa-trash"></i> <span data-i18n="warranties.delete_photo">Delete Photo</span></button>
|
||
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.invoice_receipt">Invoice/Receipt</label>
|
||
<!-- Storage Selection -->
|
||
<div id="editInvoiceStorageSelection" class="storage-selection" style="display: none;">
|
||
<div class="storage-options">
|
||
<label class="storage-option">
|
||
<input type="radio" name="editInvoiceStorage" value="local" checked>
|
||
<span class="storage-label">
|
||
<i class="fas fa-hdd"></i> <span data-i18n="warranties.store_locally">Store Locally</span>
|
||
</span>
|
||
</label>
|
||
<label class="storage-option">
|
||
<input type="radio" name="editInvoiceStorage" value="paperless">
|
||
<span class="storage-label">
|
||
<i class="fas fa-cloud"></i> <span data-i18n="warranties.store_in_paperless">Store in Paperless-ngx</span>
|
||
</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<div class="file-input-wrapper">
|
||
<label for="editInvoice" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="editInvoice" name="invoice" class="file-input" accept=".pdf,.png,.jpg,.jpeg">
|
||
</div>
|
||
<div id="editFileName" class="file-name"></div>
|
||
<div id="currentInvoice" class="mt-10"></div>
|
||
<button type="button" id="deleteInvoiceBtn" class="btn btn-danger btn-sm mt-2" style="display:none;"><i class="fas fa-trash"></i> <span data-i18n="warranties.delete_invoice">Delete Invoice</span></button>
|
||
<!-- Paperless Browse Button -->
|
||
<div id="editInvoicePaperlessBrowse" class="paperless-browse-section" style="display: none;">
|
||
<button type="button" class="btn btn-secondary btn-sm" onclick="openPaperlessBrowser('edit_invoice')">
|
||
<i class="fas fa-search"></i> <span data-i18n="warranties.browse_paperless">Browse Paperless-ngx Documents</span>
|
||
</button>
|
||
<div id="selectedEditInvoiceFromPaperless" class="selected-paperless-doc" style="display: none;">
|
||
<span class="selected-doc-name"></span>
|
||
<button type="button" class="btn btn-danger btn-xs" onclick="clearPaperlessSelection('edit_invoice')">
|
||
<i class="fas fa-times"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.product_manual_optional">Product Manual (Optional)</label>
|
||
<!-- Storage Selection -->
|
||
<div id="editManualStorageSelection" class="storage-selection" style="display: none;">
|
||
<div class="storage-options">
|
||
<label class="storage-option">
|
||
<input type="radio" name="editManualStorage" value="local" checked>
|
||
<span class="storage-label">
|
||
<i class="fas fa-hdd"></i> <span data-i18n="warranties.store_locally">Store Locally</span>
|
||
</span>
|
||
</label>
|
||
<label class="storage-option">
|
||
<input type="radio" name="editManualStorage" value="paperless">
|
||
<span class="storage-label">
|
||
<i class="fas fa-cloud"></i> <span data-i18n="warranties.store_in_paperless">Store in Paperless-ngx</span>
|
||
</span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<div class="file-input-wrapper">
|
||
<label for="editManual" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="editManual" name="manual" class="file-input" accept=".pdf,.png,.jpg,.jpeg">
|
||
</div>
|
||
<div id="editManualFileName" class="file-name"></div>
|
||
<div id="currentManual" class="mt-10"></div>
|
||
<button type="button" id="deleteManualBtn" class="btn btn-danger btn-sm mt-2" style="display:none;"><i class="fas fa-trash"></i> <span data-i18n="warranties.delete_manual">Delete Manual</span></button>
|
||
<!-- Paperless Browse Button -->
|
||
<div id="editManualPaperlessBrowse" class="paperless-browse-section" style="display: none;">
|
||
<button type="button" class="btn btn-secondary btn-sm" onclick="openPaperlessBrowser('edit_manual')">
|
||
<i class="fas fa-search"></i> <span data-i18n="warranties.browse_paperless">Browse Paperless-ngx Documents</span>
|
||
</button>
|
||
<div id="selectedEditManualFromPaperless" class="selected-paperless-doc" style="display: none;">
|
||
<span class="selected-doc-name"></span>
|
||
<button type="button" class="btn btn-danger btn-xs" onclick="clearPaperlessSelection('edit_manual')">
|
||
<i class="fas fa-times"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.files_zip_rar_optional">Files (ZIP/RAR, Optional)</label>
|
||
<div class="file-input-wrapper">
|
||
<label for="editOtherDocument" class="file-input-label">
|
||
<i class="fas fa-upload"></i> <span data-i18n="warranties.choose_file">Choose File</span>
|
||
</label>
|
||
<input type="file" id="editOtherDocument" name="other_document" class="file-input" accept=".zip,.rar">
|
||
</div>
|
||
<div id="editOtherDocumentFileName" class="file-name"></div>
|
||
<div id="currentOtherDocument" class="mt-10"></div>
|
||
<button type="button" id="deleteOtherDocumentBtn" class="btn btn-danger btn-sm mt-2" style="display:none;"><i class="fas fa-trash"></i> <span data-i18n="warranties.delete_files">Delete Files</span></button>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Tags Tab -->
|
||
<div class="edit-tab-content" id="edit-tags">
|
||
<div class="form-group">
|
||
<label data-i18n="warranties.add_tags">Add Tags</label>
|
||
<p class="text-muted" data-i18n="warranties.add_tags_desc">Tags help you organize and filter your warranties</p>
|
||
|
||
<div class="tags-container">
|
||
<div class="selected-tags" id="editSelectedTags">
|
||
<!-- Selected tags will be displayed here -->
|
||
</div>
|
||
|
||
<div class="tags-dropdown">
|
||
<input type="text" id="editTagSearch" class="form-control" data-i18n-placeholder="warranties.search_or_add_new_tag" placeholder="Search or add new tag...">
|
||
<div class="tags-list" id="editTagsList">
|
||
<!-- Tag options will be populated by JavaScript -->
|
||
</div>
|
||
</div>
|
||
|
||
<div class="mt-10">
|
||
<button type="button" id="editManageTagsBtn" class="btn btn-secondary btn-sm">
|
||
<i class="fas fa-cog"></i> <span data-i18n="actions.manage_tags">Manage Tags</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button class="btn btn-danger" data-dismiss="modal" data-i18n="actions.cancel">Cancel</button>
|
||
<button id="saveWarrantyBtn" class="btn btn-primary" data-i18n="warranties.save_changes">Save Changes</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Confirm Delete Modal -->
|
||
<div id="deleteModal" class="modal-backdrop">
|
||
<div class="modal">
|
||
<div class="modal-header">
|
||
<h3 class="modal-title" data-i18n="warranties.confirm_delete">Confirm Delete</h3>
|
||
<button class="close-btn" data-dismiss="modal">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<p data-i18n="warranties.confirm_delete_message">Are you sure you want to delete this warranty? This action cannot be undone.</p>
|
||
<p><strong><span data-i18n="warranties.product">Product</span>:</strong> <span id="deleteProductName"></span></p>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button class="btn btn-secondary" data-dismiss="modal" data-i18n="actions.cancel">Cancel</button>
|
||
<button id="confirmDeleteBtn" class="btn btn-danger" data-i18n="actions.delete">Delete</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Tag Management Modal -->
|
||
<div id="tagManagementModal" class="modal-backdrop">
|
||
<div class="modal">
|
||
<div class="modal-header">
|
||
<h3 class="modal-title" data-i18n="actions.manage_tags">Manage Tags</h3>
|
||
<button class="close-btn" data-dismiss="modal">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<form id="newTagForm" class="tag-form">
|
||
<input type="text" id="newTagName" class="form-control" data-i18n-placeholder="warranties.new_tag_name" placeholder="New tag name" required>
|
||
<input type="color" id="newTagColor" value="#808080">
|
||
<button type="submit" class="btn btn-primary" data-i18n="warranties.add_tag">Add Tag</button>
|
||
</form>
|
||
|
||
<h4 class="mt-20" data-i18n="warranties.existing_tags">Existing Tags</h4>
|
||
<div id="existingTags" class="existing-tags">
|
||
<!-- Tags will be populated here by JavaScript -->
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button class="btn btn-secondary" data-dismiss="modal" data-i18n="actions.close">Close</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Paperless Document Browser Modal -->
|
||
<div id="paperlessBrowserModal" class="modal-backdrop">
|
||
<div class="modal modal-large">
|
||
<div class="modal-header">
|
||
<h3 class="modal-title">Browse Paperless-ngx Documents</h3>
|
||
<button class="close-btn" data-dismiss="modal">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<div class="paperless-browser-controls">
|
||
<div class="search-section">
|
||
<input type="text" id="paperlessSearchInput" class="form-control" placeholder="Search documents by title, content, or tags...">
|
||
<button type="button" class="btn btn-primary" id="paperlessSearchBtn">
|
||
<i class="fas fa-search"></i> Search
|
||
</button>
|
||
<button type="button" class="btn btn-secondary" id="paperlessShowAllBtn">
|
||
<i class="fas fa-list"></i> Show All
|
||
</button>
|
||
</div>
|
||
<div class="filter-section">
|
||
<select id="paperlessTypeFilter" class="form-control">
|
||
<option value="">All Document Types</option>
|
||
<option value="application/pdf">PDF Documents</option>
|
||
<option value="image/jpeg,image/jpg,image/png">Images</option>
|
||
<option value="application/zip">Archives</option>
|
||
</select>
|
||
<select id="paperlessTagFilter" class="form-control">
|
||
<option value="">All Tags</option>
|
||
<!-- Tags will be populated dynamically -->
|
||
</select>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="paperlessDocumentsList" class="paperless-documents-list">
|
||
<div class="loading-message" style="text-align: center; padding: 20px;">
|
||
<i class="fas fa-spinner fa-spin"></i> Loading documents...
|
||
</div>
|
||
</div>
|
||
|
||
<div class="pagination-controls" id="paperlessPagination" style="display: none;">
|
||
<button type="button" class="btn btn-secondary" id="prevPageBtn" onclick="changePage(-1)">
|
||
<i class="fas fa-chevron-left"></i> Previous
|
||
</button>
|
||
<span id="pageInfo">Page 1 of 1</span>
|
||
<button type="button" class="btn btn-secondary" id="nextPageBtn" onclick="changePage(1)">
|
||
Next <i class="fas fa-chevron-right"></i>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
||
<button id="selectPaperlessDocBtn" class="btn btn-primary" style="display: none;">
|
||
<i class="fas fa-check"></i> Select Document
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Toast Container -->
|
||
<div id="toastContainer" class="toast-container"></div>
|
||
|
||
<!-- Loading Spinner -->
|
||
<div class="loading-container" id="loadingContainer">
|
||
<div class="loading-spinner"></div>
|
||
</div>
|
||
|
||
<script src="auth.js?v=20250119001"></script>
|
||
<script src="script.js?v=20250119001"></script>
|
||
|
||
<!-- Footer Width Fix -->
|
||
<script src="footer-fix.js?v=20250119001"></script>
|
||
|
||
<!-- Footer Content Manager -->
|
||
<script src="footer-content.js?v=20250119001"></script>
|
||
|
||
<!-- Powered by Warracker Footer -->
|
||
<footer class="warracker-footer" id="warrackerFooter">
|
||
<!-- Content will be dynamically generated by footer-content.js -->
|
||
</footer>
|
||
|
||
<script>
|
||
// Apply footer styles based on theme
|
||
function applyFooterStyles() {
|
||
const footer = document.getElementById('warrackerFooter');
|
||
const link = document.getElementById('warrackerFooterLink');
|
||
const isDarkMode = document.documentElement.getAttribute('data-theme') === 'dark' ||
|
||
document.documentElement.classList.contains('dark-mode') ||
|
||
document.body.classList.contains('dark-mode');
|
||
|
||
if (footer) {
|
||
if (isDarkMode) {
|
||
// Dark mode styles - using same background as header (#2d2d2d)
|
||
footer.style.cssText = 'margin-top: 50px; padding: 20px; text-align: center; border-top: 1px solid #444; background-color: #2d2d2d; color: #e0e0e0; font-size: 0.9rem;';
|
||
if (link) link.style.cssText = 'color: #4dabf7; text-decoration: none; font-weight: 500;';
|
||
} else {
|
||
// Light mode styles - using same background as header (#ffffff)
|
||
footer.style.cssText = 'margin-top: 50px; padding: 20px; text-align: center; border-top: 1px solid #e0e0e0; background-color: #ffffff; color: #333333; font-size: 0.9rem;';
|
||
if (link) link.style.cssText = 'color: #3498db; text-decoration: none; font-weight: 500;';
|
||
}
|
||
}
|
||
}
|
||
|
||
// Apply styles when page loads
|
||
document.addEventListener('DOMContentLoaded', applyFooterStyles);
|
||
|
||
// Watch for theme changes
|
||
const observer = new MutationObserver(applyFooterStyles);
|
||
observer.observe(document.documentElement, {
|
||
attributes: true,
|
||
attributeFilter: ['data-theme', 'class']
|
||
});
|
||
|
||
// Also watch body for theme changes
|
||
observer.observe(document.body, {
|
||
attributes: true,
|
||
attributeFilter: ['class']
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|