{% extends "fretboard/base.html" %} {% load paginator truncatechars typogrify_tags humanize fretboard_tags timesince_filters cache %} {% block title %}{{ forum_name }}: {% endblock%} {% block extrahead %} {{ block.super }} {% endblock %} {% block extrascript %} {% endblock %} {% block content %}

Forums: {{ search_type }} Search {% if query %}for {{ query }}{% endif %}

{% ifequal search_type "Post" %}
{% for obj in object_list %} {% ifchanged obj.topic %}

{{ obj.topic.name }}

{% endifchanged %}

{{ obj.text_formatted|safe|striptags|truncatewords:40 }}


{% endfor %}
{% else %} {% if filter.data and filter.qs %}
{% for topic in object_list %} {% cache 240 't_list_x' topic.id topic.modified_int 'filters' 8 %} {% with topic.forum as t_forum %}
{{topic.author }}

{{ topic.name|typogrify }}

{% if topic.created %} {% endif %} in {{ t_forum.name }}

{% with topic.get_latest_post as latest %} {% topic_quick_links topic latest last_seen_time %} {% if topic.post_count > 1 %}

{{ latest.author_name|title|truncatechars:"30" }} updated

{% endif %} {% endwith %}
{% endwith %} {% endcache %} {% endfor %}
{% endif %} {% endifequal %} {% endblock %}