{% extends "happenings/event_detail.html" %} {% load cache markup 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.is_vertical %}
{% else %}
{% endif %}
{{ main_image.caption }}
{% endif %}
{% if main_image %} {{ obj.update|safe|markdown|truncatewords:"100" }} {% else %} {{ obj.update|safe|markdown|truncatewords:"150" }} {% endif %}
{% endwith %}
{% endwith %}
{% endblock %}