mirror of
https://github.com/sigmasternchen/Diary
synced 2025-03-15 07:08:56 +00:00
New Lines are now supported!
This commit is contained in:
parent
dcb8be3d3e
commit
e1339550f4
2 changed files with 5 additions and 3 deletions
|
@ -85,6 +85,10 @@ a, a:active, a:visited {
|
||||||
padding: 0px 0px 0px 0px;
|
padding: 0px 0px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#listing p {
|
||||||
|
white-space:pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
color: red;
|
color: red;
|
||||||
|
|
|
@ -26,9 +26,7 @@
|
||||||
{% for e in entries %}
|
{% for e in entries %}
|
||||||
<div>
|
<div>
|
||||||
<div>{{ e.date }}</div>
|
<div>{{ e.date }}</div>
|
||||||
<p>
|
<p>{{ e.text }}</p>
|
||||||
{{ e.text }}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue