1

私はTextFielddjangoで使用しており、ユーザーがパッセージを入力するためのフォームがあります。この文章は、後で表示するときにスペースとインデントの点でまったく同じように表示されるように、ハード ラップで保存する必要があります。

管理ツールを使用してパッセージに入ると、希望どおりに表示されます。しかし、テンプレートで参照すると、すべての文が適切なスペースや改行なしで一緒に流れます。テンプレートで使用する場合、TextField をハードラップするにはどうすればよいですか?

ここに私の TextField 宣言があります:

class Description(models.Model):
summary=models.TextField(verbose_name="My Summary")

管理者から次のサンプルを入力します。

Hi I am using TextField in django and I have a form for the user to enter a passage. 

I want this passage to be saved with hard wrap in such a way that it appears the exact
same in terms of spacing and indentation and what not. When I use the admin to enter
the passage,

It appears as I want it but when I reference it on a template. All the sentences follow
up without the correcect spacing and newlines. how do I achieve this please

info=Description.objects.get(pk=1)ビューまたは{{ info }}テンプレートで使用すると、上記のように表示されません。

4

0 に答える 0