├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── Exercise Files ├── db.sqlite3 ├── management │ └── commands │ │ ├── __init__.py │ │ └── load_pet_data.py ├── pet_data.csv ├── starter_template.html └── static │ ├── images │ ├── header.jpg │ └── logo.png │ ├── main.js │ └── style.css ├── LICENSE ├── NOTICE ├── README.md ├── starter_template.html └── wisdompets ├── adoptions ├── __init__.py ├── admin.py ├── apps.py ├── management │ └── commands │ │ ├── __init__.py │ │ └── load_pet_data.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ ├── home.html │ └── pet_detail.html ├── tests.py └── views.py ├── manage.py ├── pet_data.csv ├── static ├── images │ ├── header.jpg │ └── logo.png ├── main.js └── style.css └── wisdompets ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Exercise Files/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/db.sqlite3 -------------------------------------------------------------------------------- /Exercise Files/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exercise Files/management/commands/load_pet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/management/commands/load_pet_data.py -------------------------------------------------------------------------------- /Exercise Files/pet_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/pet_data.csv -------------------------------------------------------------------------------- /Exercise Files/starter_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/starter_template.html -------------------------------------------------------------------------------- /Exercise Files/static/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/static/images/header.jpg -------------------------------------------------------------------------------- /Exercise Files/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/static/images/logo.png -------------------------------------------------------------------------------- /Exercise Files/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/static/main.js -------------------------------------------------------------------------------- /Exercise Files/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/Exercise Files/static/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/README.md -------------------------------------------------------------------------------- /starter_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/starter_template.html -------------------------------------------------------------------------------- /wisdompets/adoptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wisdompets/adoptions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/admin.py -------------------------------------------------------------------------------- /wisdompets/adoptions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/apps.py -------------------------------------------------------------------------------- /wisdompets/adoptions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wisdompets/adoptions/management/commands/load_pet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/management/commands/load_pet_data.py -------------------------------------------------------------------------------- /wisdompets/adoptions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/migrations/0001_initial.py -------------------------------------------------------------------------------- /wisdompets/adoptions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wisdompets/adoptions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/models.py -------------------------------------------------------------------------------- /wisdompets/adoptions/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/templates/base.html -------------------------------------------------------------------------------- /wisdompets/adoptions/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/templates/home.html -------------------------------------------------------------------------------- /wisdompets/adoptions/templates/pet_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/templates/pet_detail.html -------------------------------------------------------------------------------- /wisdompets/adoptions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/tests.py -------------------------------------------------------------------------------- /wisdompets/adoptions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/adoptions/views.py -------------------------------------------------------------------------------- /wisdompets/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/manage.py -------------------------------------------------------------------------------- /wisdompets/pet_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/pet_data.csv -------------------------------------------------------------------------------- /wisdompets/static/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/static/images/header.jpg -------------------------------------------------------------------------------- /wisdompets/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/static/images/logo.png -------------------------------------------------------------------------------- /wisdompets/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/static/main.js -------------------------------------------------------------------------------- /wisdompets/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/static/style.css -------------------------------------------------------------------------------- /wisdompets/wisdompets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wisdompets/wisdompets/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/wisdompets/asgi.py -------------------------------------------------------------------------------- /wisdompets/wisdompets/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/wisdompets/settings.py -------------------------------------------------------------------------------- /wisdompets/wisdompets/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/wisdompets/urls.py -------------------------------------------------------------------------------- /wisdompets/wisdompets/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-django-2825501/HEAD/wisdompets/wisdompets/wsgi.py --------------------------------------------------------------------------------