fix
authorRadek Czajka <rczajka@rczajka.pl>
Fri, 13 Dec 2019 13:13:17 +0000 (14:13 +0100)
committerRadek Czajka <rczajka@rczajka.pl>
Fri, 13 Dec 2019 13:13:17 +0000 (14:13 +0100)
src/catalogue/templates/catalogue/book_text.html

index 9f349bc..3953e6a 100644 (file)
 
     {% for insert in inserts %}
       {% with text=insert.choose %}
-        <div class="dynamic-insert{% if text.image %} with-image{% endif %}" style="{% if text.text_color %}color: {{ text.text_color }};{% endif %}" data-paragraphs="{{ insert.paragraphs }}">
+        <div class="dynamic-insert{% if text.image %} with-image{% endif %}" style="{% if text.background_color %}background-color: {{ text.background_color }};{% endif %}" data-paragraphs="{{ insert.paragraphs }}">
           <a href="{% url 'club' %}">
-            <div class="text" style="{% if text.background_color %}background-color:{{ text.background_color }}{% endif %}">
-              {{ text.text }}
+            <div class="text" style="{% if text.text_color %}color:{{ text.text_color }}{% endif %}">
+              {{ text.text|safe|linebreaks }}
             </div>
             {% if text.image %}
               <img src="{% thumbnail text.image '120x120' as thumb %}{{ thumb.url }}{% empty %}{{ text.image.url }}{% endthumbnail %}">