{% for activity in recent_activities %}
{% if activity.type == 'review' %}
{% elif activity.type == 'photo' %}
{% elif activity.type == 'park_update' %}
{% elif activity.type == 'ride_update' %}
{% else %}
{% endif %}
{% if activity.user %} {{ activity.user.username }} {% else %} ThrillWiki {% endif %} {% if activity.type == 'review' %}Review {% elif activity.type == 'photo' %}Photo {% elif activity.type == 'park_update' %}Park Update {% elif activity.type == 'ride_update' %}Ride Update {% else %}Update{% endif %}
{% if activity.type == 'review' %}

{% if activity.rating %} Rated {{ activity.rating }}/5 {% else %} Reviewed {% endif %} {% if activity.content_object %} {{ activity.content_object.name }} {% if activity.content_object.park and activity.content_object.park != activity.content_object %} at {{ activity.content_object.park.name }} {% endif %} {% endif %}

{% if activity.comment %}
"{{ activity.comment|truncatewords:20 }}"
{% endif %} {% elif activity.type == 'photo' %}

Added a new photo to {% if activity.content_object %} {{ activity.content_object.name }} {% endif %}

{% elif activity.type == 'park_update' %}

{% if activity.content_object %} {{ activity.content_object.name }} {% endif %} {{ activity.description|default:"was updated" }}

{% elif activity.type == 'ride_update' %}

{% if activity.content_object %} {{ activity.content_object.name }} {% if activity.content_object.park %} at {{ activity.content_object.park.name }} {% endif %} {% endif %} {{ activity.description|default:"was updated" }}

{% else %}

{{ activity.description }}

{% endif %}
{% if activity.image %}
Activity image
{% endif %}
{% if activity.content_object %} View Details {% endif %} {% if activity.type == 'review' and activity.helpful_count %} {{ activity.helpful_count }} helpful {% endif %}
{% empty %}

No Recent Activity

Be the first to add a review or photo!

{% endfor %}