{% extends 'shared/core/base.html' %} {% load static %} {% block head %} {% endblock head %} {% block content %}

{{ journal.name }}

{% with journal.owner.userprofile_set.first as journal_holder_profile %} {{ journal.owner.first_name }}'s Avatar

Author

{{ journal.owner.first_name }} {{ journal.owner.last_name }}

Bio

{{ journal_holder_profile.bio|linebreaksbr }}

{% endwith %}

Journal Entries

{{ journal.entries.all|length }}

Journal Streak

0 days

{% for entry in journal.entries.all %}

{{ entry.title }}

Posted on {{ entry.created_at|date:"F j, Y" }}


{{ entry.body|linebreaksbr }}

{% endfor %}
{% endblock content %}