To be effective you need to know how to use data structures. In this video you will learn the many different ways to get data in and out of a python dictionary.
Learn what it takes to add search to your admin pages, and to see where to start with custom search. In this video you will learn the basics of searching in admin to give you a head start if you want to go beyond basic ORM searching.
With tens of thousands of records in the admin, getting what you need can be hard. Learn what it takes to work with the page that lists of all those objects, and how you can filter some of them down.
Viewing the details of your data in the admin is important. Learn how to organize it better so you can more easily navigate the data on the page.
Two things people want to do a lot is upload files with AJAX and upload files to django-rest-framework. Learn how to do both at the same time in this video. We step you through the basic project, and then show you the ajax code you need to upload a file.
Learn how to manage where and how to get files your users upload. Setting up MEDIA_URL and MEDIA_ROOT can be confusing until you understand it. In this video we take the mystery out of setting it up.
When you migrate models sometimes you need to modify the data, but that can sometimes be difficult. Fortunately Django has built-in support for migrations now, which also means data migrations. Using data migrations you can modify the data anyway you need to to fit your new models.
In this video we finish off our maintenance django app to get us to the point we can associate maintenance with our bike, and know how much distance we are going for that maintenance. This gets us feature complete for our product.
Now with the ability to configure usage of Jinja built into Django 1.8 we will upgrade our application to useing Django 1.8, and use the new template configuration mechanism to run Jinja templates. It is a simple process as you will see from this video.
We have the ability to save data, but how do we get it? In this video we will go over creating a celery task to pull down data from strava regularly. Also things to consider when writing celery tasks to make them effective, and effecient as possible.