changeset 27ba1039e7e7 in www.tryton.org:default
details: https://hg.tryton.org/www.tryton.org?cmd=changeset&node=27ba1039e7e7
description:
Do not break date
diffstat:
templates/index.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 09eea0bc77d2 -r 27ba1039e7e7 templates/index.html
--- a/templates/index.html Sun Sep 18 18:25:10 2022 +0200
+++ b/templates/index.html Sun Sep 18 18:27:34 2022 +0200
@@ -249,7 +249,7 @@
<div class="row">
{% for item in news[:3] %}
<div class="col-md">
- <h4>{{ item.title }} <small class="d-none d-sm-inline
text-muted">{{ item.pubDate | string | truncate(16, True, '') }}</small></h4>
+ <h4>{{ item.title }} <small class="d-none d-sm-inline
text-muted text-nowrap">{{ item.pubDate | string | truncate(16, True, '')
}}</small></h4>
<p class="news-description">
{{ item.description|news_text|truncate(240) }}
</p>