summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates
diff options
context:
space:
mode:
Diffstat (limited to 'sublab_project/news/templates')
-rw-r--r--sublab_project/news/templates/news/news_detail.html3
-rw-r--r--sublab_project/news/templates/news/news_list.html1
2 files changed, 3 insertions, 1 deletions
diff --git a/sublab_project/news/templates/news/news_detail.html b/sublab_project/news/templates/news/news_detail.html
index e3a0de1..27c7449 100644
--- a/sublab_project/news/templates/news/news_detail.html
+++ b/sublab_project/news/templates/news/news_detail.html
@@ -5,6 +5,7 @@
{% block content %}
<p class="news_date">{{ object.date_updated|date:"DATETIME_FORMAT" }}</p>
<h2 id="{{ object.slug }}">{{ object.title }}</h3>
- <p>{{ object.content_html|safe }}</p>
+ {% if object.image %}<img src="{{ MEDIA_URL }}{{ object.image }}" width="{{ object.image_width }}" height="{{ object.image_height }}" align="right" />{% endif %}
+ {{ object.content_html|safe }}
<p class="header">{{ object.author }}</p>
{% endblock content %}
diff --git a/sublab_project/news/templates/news/news_list.html b/sublab_project/news/templates/news/news_list.html
index e53319e..080feaf 100644
--- a/sublab_project/news/templates/news/news_list.html
+++ b/sublab_project/news/templates/news/news_list.html
@@ -6,6 +6,7 @@
<h3 id="{{ post.slug }}">
<a href="{{ post.get_absolute_url }}">{{ post.date_updated|date }} - {{ post.title }}</a>
</h3>
+ {% if post.image %}<img src="{{ MEDIA_URL }}{{ post.image }}" width="{{ post.image_width }}" height="{{ post.image_height }}" align="right" />{% endif %}
{{ post.content_html|safe }}
{% endfor %}
{% if is_paginated %}