NEW

Summary

Directory Structure

Directory structure:
└── andrewjbateman-python-django-crypto/
    ├── README.md
    ├── manage.py
    ├── crypto_proj/
    │   ├── __init__.py
    │   ├── asgi.py
    │   ├── settings.py
    │   ├── urls.py
    │   └── wsgi.py
    ├── positions/
    │   ├── __init__.py
    │   ├── admin.py
    │   ├── apps.py
    │   ├── models.py
    │   ├── tests.py
    │   ├── views.py
    │   ├── migrations/
    │   │   ├── 0001_initial.py
    │   │   └── __init__.py
    │   └── templates/
    │       └── positions/
    │           └── main.html
    └── templates/
        └── base.html

Files Content