Django templates stripping spaces?

后端 未结 8 522
心在旅途
心在旅途 2021-01-08 00:06

I\'m having trouble with Django templates and CharField models.

So I have a model with a CharField that creates a slug that replaces spaces with underscores. If I cr

8条回答
  •  半阙折子戏
    2021-01-08 00:37

    if you are looking for a way to remove spaces in your html then this might be what you are looking for:

    html_tag|cut:" "
    

    cut is a builtin tag for filtering in your html. Lets say you want to use an id for each html tag to be used as a permalink to reference while you generate this dynamically then for example your solution would be:

    django documentation

提交回复
热议问题