Logo
Explore Help
Sign In
vasily/TCPDashboard
1
0
Fork 0
You've already forked TCPDashboard
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
TCPDashboard/dashboard/layouts/bot_management.py

21 lines
605 B
Python
Raw Permalink Normal View History

Implement modular architecture for Crypto Trading Bot Dashboard - Introduced a new modular structure for the dashboard, enhancing maintainability and scalability. - Created main application entry point in `app_new.py`, integrating all components and callbacks. - Developed layout modules for market data, bot management, performance analytics, and system health in the `layouts` directory. - Implemented callback modules for navigation, charts, indicators, and system health in the `callbacks` directory. - Established reusable UI components in the `components` directory, including chart controls and indicator modals. - Enhanced documentation to reflect the new modular structure and provide clear usage guidelines. - Ensured all components are under 300-400 lines for better readability and maintainability.
2025-06-04 13:30:16 +08:00
"""
Bot management layout for the dashboard.
"""
from dash import html
def get_bot_management_layout():
"""Create the bot management layout."""
return html.Div([
html.H2("🤖 Bot Management", style={'color': '#2c3e50'}),
html.P("Bot management interface will be implemented in Phase 4.0"),
# Placeholder for bot list
html.Div([
html.H3("Active Bots"),
html.Div(id='bot-list', children=[
html.P("No bots currently running", style={'color': '#7f8c8d'})
])
], style={'margin': '20px 0'})
])
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.5 Page: 35ms Template: 2ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API