├── .gitignore
├── README.md
├── db.sqlite3
├── manage.py
├── myfirstapp
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-38.pyc
│ ├── admin.cpython-38.pyc
│ ├── forms.cpython-38.pyc
│ ├── models.cpython-38.pyc
│ ├── urls.cpython-38.pyc
│ └── views.cpython-38.pyc
├── admin.py
├── apps.py
├── forms.py
├── migrations
│ ├── __init__.py
│ └── __pycache__
│ │ └── __init__.cpython-38.pyc
├── models.py
├── tests.py
├── urls.py
└── views.py
├── myfirstproject
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-38.pyc
│ ├── settings.cpython-38.pyc
│ ├── urls.cpython-38.pyc
│ └── wsgi.cpython-38.pyc
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py
├── requirements.txt
├── static
├── django.png
└── python.png
└── templates
├── 404.html
├── imagepage.html
├── imagepage2.html
├── imagepage3.html
├── imagepage4.html
├── imagepage5.html
├── index.html
├── myform.html
├── myform2.html
├── second.html
└── third.html
/.gitignore:
--------------------------------------------------------------------------------
1 | /myenv/
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Learn-Django
2 |
3 | How to run project
4 |
Sorry, This page is missing or does not exist
7 |