{% extends "base.html" %} {% block title %}{{ post.title }} - Discussions{% endblock %} {% block content %}

Discussions for:

{{ post.title }}

by {{ post.author.nickname }} • {{ post.created_at.strftime('%B %d, %Y') }}

View Post

Original Post

{{ post.created_at.strftime('%B %d, %Y at %I:%M %p') }}

{{ post.content[:300] }}{% if post.content|length > 300 %}...{% endif %}
{{ post.author.nickname }} {% if post.likes %} {{ post.likes.count() }} likes {% endif %} {% if post.comments %} {{ post.comments.count() }} comments {% endif %}
Read Full Post
{% if rooms %}

Discussion Rooms ({{ rooms|length }})

{% for room in rooms %}

{{ room.name }}

{% if room.description %}

{{ room.description }}

{% endif %}
{{ room.message_count or 0 }} {% if room.is_private %} Private {% endif %}
Created by {{ room.created_by.nickname }} {{ room.participants.count() }} members {% if room.last_activity %} {{ room.last_activity.strftime('%m/%d/%Y at %I:%M %p') }} {% else %} No recent activity {% endif %} Created {{ room.created_at.strftime('%m/%d/%Y') }}
{% endfor %}
{% else %}

No discussions yet

Be the first to start a discussion about this post!

Start Discussion
{% endif %}
{% endblock %}