我在中定义了以下类models.py
:
class Entry(models.Model):
content = models.TextField()
在我的模板中,我使用{{ entry.content|linebreaks }}
. 输出会自动包装在<p>Output of entry.content</p>
标签中。然而我想给这个段落一个特定的类别<p class="my-class">Output of entry.content</p>
。如何在我的模板中指定它?