Skip to content

Instantly share code, notes, and snippets.

@ManotLuijiu
Last active January 24, 2021 15:56
Show Gist options
  • Save ManotLuijiu/ea6cf068ef7a7d0919e7e162d5b920da to your computer and use it in GitHub Desktop.
Save ManotLuijiu/ea6cf068ef7a7d0919e7e162d5b920da to your computer and use it in GitHub Desktop.
Django app leads folder
leads
.
├── __pycache__
│ ├── __init__.cpython-39.pyc
│ ├── admin.cpython-39.pyc
│ ├── forms.cpython-39.pyc
│ ├── models.cpython-39.pyc
│ ├── urls.cpython-39.pyc
│ └── views.cpython-39.pyc
├── migrations
│ ├── __pycache__
│ │ ├── __init__.cpython-39.pyc
│ │ └── 0001_initial.cpython-39.pyc
│ ├── __init__.py
│ └── 0001_initial.py
├── __init__.py
├── admin.py
├── apps.py
├── forms.py
├── models.py
├── tests.py
├── urls.py
└── views.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment