Fix display of images/more in bulletin

This commit is contained in:
Yingtong Li 2019-03-17 23:24:18 +11:00
parent 954348192b
commit 66de568c69
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 5 additions and 3 deletions

View File

@ -76,6 +76,7 @@
<tr> <!-- Main Digest content -->
<th class="small-12 large-{% if item.image %}8{% else %}12 first{% endif %} columns last">
<b><h5>{{ item.title }}</h5></b>
{% if item.image %}<img src="https://{{ settings.ALLOWED_HOSTS[0] }}{{ MEDIA_URL }}{{ item.image }}" alt="{{ item.title }}" style="max-height: 10em; float: left; margin-right: 1em;">{% endif %}
<p>{{ item.content | markdown }}</p>
{% if item.link %}<p><a href="{{ item.link }}">Read more &#x203A;</a></p>{% endif %}
{% if not loop.last %}<hr>{% endif %}
@ -90,9 +91,10 @@
{{ gap }}
{% for item in more %}
<tr>
<th class="small-12 large-4 columns{% if loop.first %} first{% endif %}{% if loop.last %} last{% endif %}">
{% if item.image %}{% if item.link %}<a href="{{ item.link }}">{% endif %}<img src="https://{{ settings.ALLOWED_HOSTS[0] }}{{ MEDIA_URL }}{{ item.image }}" alt="{{ item.title }}" style="max-height: 10em;">{% if item.link %}</a>{% endif %}<br>{% endif %}
<p>{{ item.content|striptags|truncate(200) }}</p>
<th class="small-12 large-4 columns first last">
<b><h5>{{ item.title }}</h5></b>
{% if item.image %}<img src="https://{{ settings.ALLOWED_HOSTS[0] }}{{ MEDIA_URL }}{{ item.image }}" alt="{{ item.title }}" style="max-height: 10em; float: left; margin-right: 1em;">{% endif %}
<p>{{ item.content | truncate(200) | markdown }}</p>
<p><a href="https://{{ settings.ALLOWED_HOSTS[0] }}{{ url('bulletin_preview') }}?full">Read more &#x203A;</a></p>
</th>
</tr>