{% extends 'base.html' %} {% block title %}{{ group.name }}{% if q %} > Search: {{ q }}{% endif %}{% endblock %} {% macro print_post(post, show_comments=False) %}
{{ post.from.name }} {{ post.time|format_time }}{% if post.like_count %} · {{ post.like_count }} likes{% endif %} ·

{{ post.message|urlize|nl2br }}

{% if show_comments %} {% endif %}
{% endmacro %} {% block content %}

{{ group.name }}

{% if error %}

{{ error }}

{% endif %}
{% if result %}
Sort by: Popularity Date
{% for item in result %} {% if item.model == 'Post' %} {{ print_post(item, show_comments=True) }} {% elif item.model == 'Comment' %} {{ print_post(item.post, show_comments=True) }} {% endif %} {% endfor %} {% if next_page or prev_page %}
{% if prev_page %} {% endif %} {% if next_page %} {% endif %}
{% endif %}
{% endif %} {% endblock %} {% block js %} {% if result %} {% endif %} {% endblock %}