~ubuntu-us-ma/us-ma-loco-site/trunk

« back to all changes in this revision

Viewing changes to templates/news/item.html

  • Committer: Martin Owens
  • Date: 2009-11-24 00:59:14 UTC
  • Revision ID: doctormo@gmail.com-20091124005914-7uqze0xq9uim1t6p
Hide news images.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
{% for paragraph in item.newsparagraph_set.all %}
11
11
  {% if paragraph.image %}
12
 
    <img src="/media/images/news/{{ paragraph.image_link }}" style="padding: 20px;"/>
 
12
    <!--<img src="/media/images/news/{{ paragraph.image_link }}" style="padding: 20px;"/>-->
13
13
  {% endif %}
14
14
  <p>{{ paragraph.content|safe }}</p>
15
15
{% endfor %}