feat: Add 'leads' app to Django project
This commit is contained in:
parent
decdd0be6e
commit
842d3c5d31
5
leads/apps.py
Normal file
5
leads/apps.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
class LeadsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'leads'
|
||||
3
leads/models.py
Normal file
3
leads/models.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
leads/views.py
Normal file
3
leads/views.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Loading…
Reference in a new issue