445 lines
15 KiB
HTML
445 lines
15 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 %}Server Monitoring Dashboard{% endblock %}</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<style>
|
|
body {
|
|
background-color: #f8f9fa;
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Sidebar Styles */
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 250px;
|
|
height: 100vh;
|
|
background: linear-gradient(135deg, #2c3e50, #3498db);
|
|
color: white;
|
|
padding: 20px 0;
|
|
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
|
|
overflow-y: auto;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.sidebar .logo {
|
|
text-align: center;
|
|
padding: 20px 15px 30px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.sidebar .logo h3 {
|
|
margin: 0;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
|
|
.sidebar .logo small {
|
|
color: #bdc3c7;
|
|
}
|
|
|
|
.sidebar .nav-menu {
|
|
list-style: none;
|
|
padding: 0 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
.sidebar .nav-item {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px 15px;
|
|
color: #ecf0f1;
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sidebar .nav-link:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.sidebar .nav-link.active {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.sidebar .nav-link i {
|
|
width: 20px;
|
|
margin-right: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.sidebar .nav-section {
|
|
margin: 30px 15px 10px;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
color: #bdc3c7;
|
|
font-weight: 600;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
.sidebar .nav-link.admin-link {
|
|
color: #ff6b6b;
|
|
margin-top: 8px;
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
padding-top: 14px;
|
|
}
|
|
.sidebar .nav-link.admin-link:hover {
|
|
background-color: rgba(220,53,69,0.25);
|
|
color: #ff6b6b;
|
|
}
|
|
.sidebar .nav-link.admin-link.active {
|
|
background-color: rgba(220,53,69,0.35);
|
|
color: #ff6b6b;
|
|
}
|
|
|
|
/* Main Content Styles */
|
|
.main-content {
|
|
margin-left: 250px;
|
|
padding: 20px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.content-header {
|
|
background-color: #fff;
|
|
padding: 20px 25px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.content-header h1 {
|
|
margin: 0;
|
|
color: #2c3e50;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-header .breadcrumb {
|
|
background: none;
|
|
padding: 0;
|
|
margin: 8px 0 0 0;
|
|
}
|
|
|
|
.content-header .breadcrumb-item a {
|
|
color: #3498db;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.content-body {
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
padding: 25px;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
transform: translateX(-100%);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.sidebar.mobile-open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.main-content {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.mobile-menu-toggle {
|
|
display: block !important;
|
|
position: fixed;
|
|
top: 15px;
|
|
left: 15px;
|
|
z-index: 1001;
|
|
background: #3498db;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.mobile-menu-toggle {
|
|
display: none;
|
|
}
|
|
|
|
/* Additional Styles */
|
|
.table-container {
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #3498db;
|
|
border-color: #3498db;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #2980b9;
|
|
border-color: #2980b9;
|
|
}
|
|
|
|
/* Flash Messages */
|
|
.alert {
|
|
border-radius: 8px;
|
|
border: none;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Mobile Menu Toggle -->
|
|
<button class="mobile-menu-toggle" onclick="toggleSidebar()">
|
|
<i class="fas fa-bars"></i>
|
|
</button>
|
|
|
|
<!-- Sidebar Navigation -->
|
|
<nav class="sidebar" id="sidebar">
|
|
<div class="logo">
|
|
<h3><i class="fas fa-server"></i> Monitor</h3>
|
|
<small>Server Monitoring v2.0</small>
|
|
</div>
|
|
|
|
<ul class="nav-menu">
|
|
<div class="nav-section">Device Management</div>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.devices') }}" class="nav-link {% if request.endpoint in ['main.devices','main.device_edit','main.device_detail'] %}active{% endif %}">
|
|
<i class="fas fa-desktop"></i>
|
|
Devices
|
|
</a>
|
|
</li>
|
|
|
|
<div class="nav-section">WMT</div>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('wmt_web.index') }}" class="nav-link {% if request.endpoint == 'wmt_web.index' %}active{% endif %}">
|
|
<i class="fas fa-sliders-h"></i>
|
|
WMT Dashboard
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('wmt_web.settings') }}" class="nav-link {% if request.endpoint == 'wmt_web.settings' %}active{% endif %}">
|
|
<i class="fas fa-cog"></i>
|
|
WMT Settings
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('wmt_web.update_requests') }}" class="nav-link {% if request.endpoint == 'wmt_web.update_requests' %}active{% endif %}">
|
|
<i class="fas fa-inbox"></i>
|
|
Update Requests
|
|
{% if pending_wmt_count > 0 %}<span class="badge bg-danger ms-1">{{ pending_wmt_count }}</span>{% endif %}
|
|
</a>
|
|
</li>
|
|
|
|
<div class="nav-section">Monitoring</div>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.logs') }}" class="nav-link {% if request.endpoint == 'main.logs' %}active{% endif %}">
|
|
<i class="fas fa-list-alt"></i>
|
|
Logs
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.templates') }}" class="nav-link {% if request.endpoint == 'main.templates' %}active{% endif %}">
|
|
<i class="fas fa-file-alt"></i>
|
|
Templates
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.stats') }}" class="nav-link {% if request.endpoint == 'main.stats' %}active{% endif %}">
|
|
<i class="fas fa-chart-bar"></i>
|
|
Statistics
|
|
</a>
|
|
</li>
|
|
|
|
<div class="nav-section">Automation</div>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('ansible_web.devices') }}" class="nav-link {% if request.endpoint == 'ansible_web.devices' %}active{% endif %}">
|
|
<i class="fas fa-network-wired"></i>
|
|
Remote Devices
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('ansible_web.playbooks') }}" class="nav-link {% if request.endpoint == 'ansible_web.playbooks' %}active{% endif %}">
|
|
<i class="fas fa-play"></i>
|
|
Playbooks
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('ansible_web.execute') }}" class="nav-link {% if request.endpoint == 'ansible_web.execute' %}active{% endif %}">
|
|
<i class="fas fa-terminal"></i>
|
|
Execute
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('ansible_web.ssh_setup') }}" class="nav-link {% if request.endpoint == 'ansible_web.ssh_setup' %}active{% endif %}">
|
|
<i class="fas fa-key"></i>
|
|
SSH Setup
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('ansible_web.failure_reports') }}" class="nav-link {% if request.endpoint == 'ansible_web.failure_reports' %}active{% endif %}">
|
|
<i class="fas fa-exclamation-triangle"></i>
|
|
Failure Reports
|
|
</a>
|
|
</li>
|
|
|
|
<div class="nav-section">Server</div>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.logs') }}" class="nav-link {% if request.endpoint == 'main.logs' %}active{% endif %}">
|
|
<i class="fas fa-stream"></i>
|
|
Live Logs
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="#" class="nav-link" onclick="confirmAction('Refresh Data', 'Are you sure you want to refresh all data?')">
|
|
<i class="fas fa-sync-alt"></i>
|
|
Refresh Data
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="#" class="nav-link" onclick="showInfo()">
|
|
<i class="fas fa-info-circle"></i>
|
|
System Info
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="{{ url_for('main.admin') }}" class="nav-link admin-link {% if request.endpoint == 'main.admin' %}active{% endif %}">
|
|
<i class="fas fa-shield-alt"></i>
|
|
Admin
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Main Content Area -->
|
|
<div class="main-content">
|
|
<!-- Content Header -->
|
|
<div class="content-header">
|
|
<h1>{% block page_title %}Dashboard{% endblock %}</h1>
|
|
{% if breadcrumbs %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
{% for crumb in breadcrumbs %}
|
|
<li class="breadcrumb-item {% if loop.last %}active{% endif %}">
|
|
{% if not loop.last %}
|
|
<a href="{{ crumb.url }}">{{ crumb.title }}</a>
|
|
{% else %}
|
|
{{ crumb.title }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Flash Messages -->
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
<div class="flash-messages">
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{% if category == 'error' %}danger{% else %}{{ category }}{% endif %} alert-dismissible fade show" role="alert">
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<!-- Main Content Body -->
|
|
<div class="content-body">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Scripts -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script>
|
|
// Mobile sidebar toggle
|
|
function toggleSidebar() {
|
|
const sidebar = document.getElementById('sidebar');
|
|
sidebar.classList.toggle('mobile-open');
|
|
}
|
|
|
|
// Close sidebar when clicking outside on mobile
|
|
document.addEventListener('click', function(event) {
|
|
const sidebar = document.getElementById('sidebar');
|
|
const toggle = document.querySelector('.mobile-menu-toggle');
|
|
|
|
if (window.innerWidth <= 768 &&
|
|
!sidebar.contains(event.target) &&
|
|
!toggle.contains(event.target)) {
|
|
sidebar.classList.remove('mobile-open');
|
|
}
|
|
});
|
|
|
|
// Utility functions
|
|
function confirmAction(title, message) {
|
|
if (confirm(message)) {
|
|
// Add refresh logic here
|
|
window.location.reload();
|
|
}
|
|
}
|
|
|
|
function showInfo() {
|
|
alert('Server Monitoring System v2.0\nDeveloped for enhanced device monitoring\nFeatures: Device management, Log monitoring, Ansible automation');
|
|
}
|
|
|
|
// Auto-refresh functionality (optional)
|
|
let autoRefreshInterval;
|
|
|
|
function startAutoRefresh(seconds = 30) {
|
|
autoRefreshInterval = setInterval(() => {
|
|
window.location.reload();
|
|
}, seconds * 1000);
|
|
}
|
|
|
|
function stopAutoRefresh() {
|
|
if (autoRefreshInterval) {
|
|
clearInterval(autoRefreshInterval);
|
|
}
|
|
}
|
|
|
|
// Initialize based on page
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// Add any page-specific initialization here
|
|
console.log('Server Monitoring Dashboard loaded');
|
|
});
|
|
</script>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html> |