Re: Generic display views / DetailView

2019-04-09 Thread Sithembewena L. Dube
The slug must be descriptive of the record. It is often derived from a value such as a blog title. A good slug is useful for SEO purposes as it can contain descriptive keywords. I just sent more reading on slugs from the official Django docs. Kind regards, Sithu *Sent with Shift

Re: Generic display views / DetailView

2019-04-09 Thread Sithembewena L. Dube
The slug would be the part of the url that points to a specific blog entry or article. https://docs.djangoproject.com/en/2.2/glossary/#term-slug https://docs.djangoproject.com/en/2.2/ref/models/fields/#django.db.models.SlugField Kind regards, Sithu *Sent with Shift

Generic display views / DetailView

2019-04-09 Thread John
Hello maybe someone could help me, Im working on an example similar to the DetailView for Generic Display Views https://docs.djangoproject.com/en/2.2/ref/class-based-views/generic-display/#detailview In