onespacemedia / cms

A collection of Django extensions that add content-management facilities to Django projects.
BSD 3-Clause "New" or "Revised" License
14 stars 7 forks source link

Improve or remove `help_text` on PageBase #179

Closed lewiscollard closed 4 years ago

lewiscollard commented 4 years ago

Currently:

    slug = models.SlugField(
        help_text='A user friendly URL'
    )

Given that almost everything on a typical project inherits from this (including the CMS Page model itself) I think this could do with improvement; the slug is not a URL, and it is not clear to me how it is "user-friendly".

Kane1994 commented 4 years ago

How about "A unique portion of the URL that is used to identify this specific page using human-readable keywords (e.g., about-us)"

lewiscollard commented 4 years ago

Literally perfect, @Kane1994. Please go ahead.