Django templates stripping spaces?

后端 未结 8 508
心在旅途
心在旅途 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:53

    There is a built-in template tag spaceless

    {% spaceless %}
        

    Foo

    {% endspaceless %}

    Which results:

    Foo

    Read more in django documentation.

提交回复
热议问题