Carga
This commit is contained in:
2025-04-17 00:35:33 -06:00
parent 4977462629
commit 67fc72aed5
1333 changed files with 1077639 additions and 0 deletions

0
principal/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
principal/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
principal/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class PrincipalConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'principal'

View File

3
principal/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
principal/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

9
principal/views.py Normal file
View File

@@ -0,0 +1,9 @@
from django.shortcuts import render
from fijos.models import AltaSensoresFijos
# Create your views here.
def inicio(request):
menus = AltaSensoresFijos.objects.all()
return render(request, 'index.html', {"menus": menus})