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

{{ project.name }}

{% include "fossil/_project_nav.html" %}
← Back to forum
{% for item in posts %}
{% if is_django_thread %} {{ item.post.user }} {% else %} {{ item.post.user }} {% endif %} {{ item.post.timestamp|timesince }} ago
{% if item.post.title and forloop.first %}

{{ item.post.title }}

{% endif %} {% if item.body_html %}
{{ item.body_html }}
{% else %}

{{ item.post.title|default:"(empty)" }}

{% endif %}
{% empty %}

No posts in this thread.

{% endfor %}
{% if has_write and is_django_thread %}

Reply

{% csrf_token %}
{% endif %} {% endblock %}