{% extends "posts/post_base.html" %} {% load humanize %} {% block pre_post_content %}
{% if request.user.is_authenticated %}
Your Groups
{% endif %}
All groups
    {# {% get_other_groups as other_groups %}#} {% for other_group in get_other_groups %}
  • {{ other_group.name }}
  • {% endfor %}
{% endblock %} {% block post_content %}
{% for post in post_list %} {% include "posts/_post.html" %} {% endfor %}
{% endblock %}