Create your administration models: Pre-populated fields

  1. Editable fields
  2. Create your administration models
  3. Customize Author and Topic

The slug is usually the title but without spaces and other special characters. We can tell Django to try and handle this for us:

prepopulated_fields = {'slug': ('title',)}

You can change it if you need to, but most of the time the prepopulation will be fine.

  1. Editable fields
  2. Create your administration models
  3. Customize Author and Topic