sandiegopython / test-driven-django-development

This repository contains materials for a San Diego Python workshop on learning Django with test inspired development
http://test-driven-django-development.readthedocs.org/
Other
102 stars 35 forks source link

SlugField editable #131

Closed riseriyo closed 9 years ago

riseriyo commented 10 years ago

Suggestion: Change: "but one way is to set the SlugField to be editable=False which will hide it in the admin or other forms."

to: "but one way is to set the SlugField in our model, Entry, to be editable=False which will hide it in the admin or other forms."

then show it: slug = SlugField(editable=False)