Mudanza de repo

This commit is contained in:
2025-09-22 18:43:29 -06:00
parent 26fe36ca52
commit d11d543bdc
193 changed files with 10998 additions and 0 deletions

17
core/dashboard.py Normal file
View File

@@ -0,0 +1,17 @@
# core/dashboard.py
from jet.dashboard.dashboard import Dashboard
from jet.dashboard.modules import DashboardModule
class ChartModule(DashboardModule):
title = 'Mi Gráfico'
template = 'admin/dashboard_admin.html' # Este template lo crearás más adelante
collapsible = False
def init_with_context(self, context):
self.children = []
class CustomIndexDashboard(Dashboard):
columns = 2
def init_with_context(self, context):
self.children.append(ChartModule())