7
votes
Is there an easy way to populate SlugField from CharField?
for Admin in 1.0, you'd need to use
prepopulated_fields = {'slug':('title',),}
in your admin.py
Your key in the prepopulated_fields dictionary is the field …
