{% extends "happenings/event_detail.html" %}
{% load typogrify_tags social_tags event_tags humanize %}
{% block extra_title %}Events: {{ event.name }}: {{ object.title }}{% endblock %}
{% block bodyclass %}detail{% endblock %}
{% block content %}
{% include "includes/top_assets.html" %}
{{ object.title }}
{{ object.update_formatted|typogrify }}
{% with object.get_open_giveaways as giveaways %}
{% if giveaways %}
{{ object.title }} Challenge{{ giveaways.count|pluralize }}!
{% endif %}
{% endwith %}
{% paginate_update object %}
View all comments
{% include 'comments/inclusion/comments.html' %}
{% endblock %}