{% extends "happenings/event_detail.html" %} {% load cache timesince_filters typogrify_tags %} {% block content %}

{{ event.name }} updates

{% with object_list|slice:"0:4" as top_content %}
{% for obj in top_content %} {% if forloop.first %}

{{ obj.title|typogrify }}

{% with obj.get_image as main_image %} {% if main_image %} {% if main_image.vertical %}
{% else %}
{% endif %}
{{ main_image.caption }}
{% endif %}
{% if main_image %} {{ obj.update|striptags|truncatewords:"60" }} {% else %} {{ obj.update|striptags|truncatewords:"120" }} {% endif %}
{% endwith %}
{% endwith %}
{% endblock %}