first commit

This commit is contained in:
Francisco Rodriguez
2022-11-26 18:12:13 -07:00
parent a07c495051
commit db865ef49c
15 changed files with 361 additions and 0 deletions

0
Clientes/__init__.py Normal file
View File

3
Clientes/admin.py Normal file
View File

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

6
Clientes/apps.py Normal file
View File

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

View File

3
Clientes/models.py Normal file
View File

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

3
Clientes/tests.py Normal file
View File

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

3
Clientes/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.