This document discusses Django model methods. It provides an example Person model with several custom methods: baby_boomer_status() checks if a person's birthdate falls within the baby boomer range; is_midwestern() checks if a person's state is in the Midwest; and a property _get_full_name() that returns the person's full name. The document demonstrates calling these custom methods on Person objects retrieved from the database.