{% extends "base.html" %} {% block title %}Forum — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}

Forum

{% if has_write %} New Thread {% endif %}
{% for post in posts %}
{% if post.source == "django" %} {{ post.title|default:"(untitled)" }} {% else %} {{ post.title|default:"(untitled)" }} {% endif %} {% if post.body %}

{{ post.body|truncatechars:200 }}

{% endif %}
{% if post.source == "fossil" %} {{ post.user }} {% else %} {{ post.user }} {% endif %} {{ post.timestamp|timesince }} ago {% if post.source == "django" %} local {% endif %}
{% empty %}

{% if search %}No forum posts matching "{{ search }}".{% else %}No forum posts.{% endif %}

{% if has_write and not search %} Start the first thread {% endif %}
{% endfor %}
{% include "includes/_pagination_manual.html" %}
{% endblock %}