## Problems Fixed: 1. **Template inheritance inconsistency** - Some admin pages used standalone HTML while others extended base.html 2. **CSS duplication** - Each admin page had duplicate styles for similar components 3. **Header styling variations** - Different admin pages had slightly different header styles 4. **Inconsistent class naming** - Mixed naming patterns across admin templates ## Root Cause: Admin pages were developed independently without a shared styling foundation, leading to code duplication and visual inconsistencies. ## Solution Implemented: ### New Shared Admin Base - **Created `_admin_base.html`** - Unified base template for all admin pages - **Consolidated styles** - Moved common admin styles to shared base template - **Standardized components** - Unified buttons, tables, badges, forms, etc. - **Consistent layout** - Standard admin container, header, and navigation structure ### Refactored Templates - **`admin.html`** - Now extends `_admin_base.html`, removed 300+ lines of duplicate CSS - **`admin_polling.html`** - Converted to use base template, cleaner structure - **`admin_polling_logs.html`** - Completely rewritten to use base template - **Consistent class names** - All admin tables now use `.admin-table` instead of mixed names ### Benefits - **Maintainability** - Single source of truth for admin styling - **Consistency** - All admin pages now have identical look and feel - **Performance** - Reduced CSS duplication improves load times - **Extensibility** - Easy to add new admin pages with consistent styling All admin pages now share a unified, professional appearance\! Commit: [current] 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
409 lines
10 KiB
HTML
409 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Admin Panel - {{ APP_NAME }}{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('serve_theme', filename='modern-card-ui/styles.css') }}">
|
|
<style>
|
|
/* ===== SHARED ADMIN STYLES ===== */
|
|
.admin-container {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
.admin-header {
|
|
background: linear-gradient(135deg, var(--primary-dark) 0%, #2a5068 100%);
|
|
color: white;
|
|
padding: 32px;
|
|
border-radius: 12px;
|
|
margin-bottom: 24px;
|
|
border-bottom: 3px solid var(--primary-color);
|
|
}
|
|
|
|
.admin-header h1 {
|
|
margin: 0 0 8px 0;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.admin-header p {
|
|
margin: 0;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.admin-section {
|
|
background: var(--surface-color);
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
margin-bottom: 24px;
|
|
box-shadow: 0 2px 4px var(--surface-elevation-1);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 16px;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* ===== ADMIN NAVIGATION ===== */
|
|
.admin-tabs {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 24px;
|
|
border-bottom: 2px solid var(--divider-color);
|
|
}
|
|
|
|
.tab-btn {
|
|
padding: 12px 24px;
|
|
background: none;
|
|
border: none;
|
|
border-bottom: 3px solid transparent;
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.tab-btn.active {
|
|
color: var(--primary-color);
|
|
border-bottom-color: var(--primary-color);
|
|
}
|
|
|
|
.tab-btn:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.tab-content {
|
|
display: none;
|
|
}
|
|
|
|
.tab-content.active {
|
|
display: block;
|
|
}
|
|
|
|
/* ===== BUTTONS ===== */
|
|
.btn {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--primary-hover);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: var(--surface-elevation-1);
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--divider-color);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: var(--surface-elevation-2);
|
|
}
|
|
|
|
.action-btn {
|
|
padding: 6px 12px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.action-btn-primary {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.action-btn-primary:hover {
|
|
background: var(--primary-hover);
|
|
}
|
|
|
|
.action-btn-danger {
|
|
background: #dc3545;
|
|
color: white;
|
|
}
|
|
|
|
.action-btn-danger:hover {
|
|
background: #c82333;
|
|
}
|
|
|
|
.action-btn-warning {
|
|
background: #ffc107;
|
|
color: #212529;
|
|
}
|
|
|
|
.action-btn-warning:hover {
|
|
background: #e0a800;
|
|
}
|
|
|
|
/* ===== STATUS BADGES ===== */
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
border-radius: 12px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.badge-admin {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.badge-user {
|
|
background: var(--background-color);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.badge-active {
|
|
background: #28a745;
|
|
color: white;
|
|
}
|
|
|
|
.badge-inactive {
|
|
background: #6c757d;
|
|
color: white;
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
border-radius: 12px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.status-enabled, .status-success {
|
|
background: #d4edda;
|
|
color: #155724;
|
|
}
|
|
|
|
.status-disabled, .status-error {
|
|
background: #f8d7da;
|
|
color: #721c24;
|
|
}
|
|
|
|
.status-running {
|
|
background: #fff3cd;
|
|
color: #856404;
|
|
}
|
|
|
|
/* ===== TABLES ===== */
|
|
.admin-table {
|
|
background: var(--surface-color);
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 4px var(--surface-elevation-1);
|
|
}
|
|
|
|
.admin-table table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.admin-table th {
|
|
background: var(--primary-dark);
|
|
color: white;
|
|
padding: 16px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.admin-table td {
|
|
padding: 16px;
|
|
border-bottom: 1px solid var(--divider-color);
|
|
}
|
|
|
|
.admin-table tr:hover {
|
|
background: var(--hover-overlay);
|
|
}
|
|
|
|
.admin-table tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* ===== STATS & CARDS ===== */
|
|
.admin-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--surface-color);
|
|
padding: 20px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 4px var(--surface-elevation-1);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.stat-label {
|
|
color: var(--text-secondary);
|
|
font-size: 0.9rem;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.info-card {
|
|
background: var(--background-color);
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
border-left: 3px solid var(--primary-color);
|
|
}
|
|
|
|
.info-card h4 {
|
|
margin: 0 0 8px 0;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.info-card p {
|
|
margin: 4px 0;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.system-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
/* ===== FORMS ===== */
|
|
.form-group {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.form-control {
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--divider-color);
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.form-control:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
|
|
}
|
|
|
|
/* ===== UTILITIES ===== */
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-bottom: 16px;
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.back-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.flash-messages {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.flash-message {
|
|
padding: 12px 16px;
|
|
border-radius: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.flash-message.success {
|
|
background: #d4edda;
|
|
color: #155724;
|
|
}
|
|
|
|
.flash-message.error {
|
|
background: #f8d7da;
|
|
color: #721c24;
|
|
}
|
|
|
|
.flash-message.warning {
|
|
background: #fff3cd;
|
|
color: #856404;
|
|
}
|
|
|
|
/* ===== RESPONSIVE ===== */
|
|
@media (max-width: 768px) {
|
|
.admin-tabs {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.admin-stats {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.system-info {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.admin-container {
|
|
padding: 16px;
|
|
}
|
|
}
|
|
|
|
/* ===== PAGE-SPECIFIC OVERRIDES ===== */
|
|
{% block admin_styles %}{% endblock %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include '_nav.html' %}
|
|
|
|
<div class="admin-container">
|
|
<a href="{{ url_for('index') }}" class="back-link">← Back to Feed</a>
|
|
|
|
<div class="admin-header">
|
|
<h1>{% block page_title %}Admin Panel{% endblock %}</h1>
|
|
<p>{% block page_description %}Manage system settings and content{% endblock %}</p>
|
|
</div>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
<div class="flash-messages">
|
|
{% for category, message in messages %}
|
|
<div class="flash-message {{ category }}">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block admin_content %}{% endblock %}
|
|
</div>
|
|
|
|
{% block admin_scripts %}{% endblock %}
|
|
</body>
|
|
</html> |