引导设计为何会影响安全过滤器(富文本格式)!

时间:2018-12-01 10:42:56

标签: django bootstrap-4 ckeditor4.x

我将ckeditor与Bootstrap一起用作Django应用程序中的文本编辑器 问题在于,过滤器安全{{td.snippet1}}之前的引导程序设计正常,但是当添加过滤器{{td.snippet1 | safe}}时,设计受到严重影响,我不知道不知道为什么

三个只有3个文章-----像这三个= article.objects.order_by('-id')[:3]

然后是col-lg-4 col类

[添加安全滤镜后显示图像] [1]

 <div class="row" > 
          {% for td in three %}
 <div class="col-lg-4 shadow-lg p-3 mb-5 bg-white rounded col-md-6">
    <figure class="figure">
          <a class="" href="article/{{td.id}}" style="color: #32234b;"> <img src="{{td.image.url}}" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure."></a>

       </figure>
       <a class="" href="article/{{td.id}}" style="color: #32234b;"> <p   class="h6 pr1 font-weight-bold">{{td.title}}</p></a>
       <p class="h6 pr2" >{{td.snippet1|safe }}</p>

       <p class="h6 pr2 text-info" style="margin-top: 2em;">{{ td.article_author }}</p>
       <p class="h6 pr2 text-info">{{ td.posted_on}}</p>

    </div>
    {% endfor %}
    <!-- end column -->

</div>
<!-- end  row -->

0 个答案:

没有答案