From a3c2b3757720e5c7349bd7de4534f20634e79752 Mon Sep 17 00:00:00 2001 From: adrigongv23 Date: Thu, 19 Feb 2026 12:23:33 +0100 Subject: [PATCH] =?UTF-8?q?App=20documentos=20a=C3=B1adida?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plataform_Web/documentos/models.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Plataform_Web/documentos/models.py b/Plataform_Web/documentos/models.py index d228f35..40f4821 100644 --- a/Plataform_Web/documentos/models.py +++ b/Plataform_Web/documentos/models.py @@ -8,18 +8,22 @@ class Documento(models.Model): CATEGORIAS = ( ('aerodinamica', 'Aerodinámica'), ('chasis', 'Chasis'), - ('suspension', 'Suspensión'), - ('motor', 'Motor/Powertrain'), + ('business', 'Business & Operations'), + ('epowertrain', 'E-Powertrain'), ('electronica', 'Electrónica'), + ('sdf', 'SDF'), + ('motor_transmision', 'Motor & Transmisión'), + ('software', 'Software'), ('normativa', 'General / Normativa'), - ('software', 'Software') ) TIPO_DOC = ( + ('fabricacion', 'Fabricación'), ('diseno', 'Diseño / CAD'), + ('concepto', 'Concepto'), ('simulacion', 'Simulación'), ('informe', 'Informe Técnico'), - ('factura', 'Factura / Presupuesto'), + ('tutorial', 'Tutorial'), ('otro', 'Otro'), )