{% extends "happenings/event_detail.html" %}
{% load markup 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|safe|urlize|markdown|typogrify }}
{% with object.get_open_giveaways as giveaways %}
{% if giveaways %}
GDP Challenge{{ giveaways.count|pluralize }}!
{% endif %}
{% endwith %}
{% paginate_update object %}
View all comments
{% include 'comments/inclusion/comments.html' %}
{% endblock %}