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

{{ project.name }}

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

Technotes

{% if has_write %} New Technote {% endif %}
{% if notes %}
{% for note in notes %}

{{ note.comment|truncatechars:200 }}

{{ note.user }} {{ note.uuid|truncatechars:10 }} {{ note.timestamp|date:"Y-m-d H:i" }}
{% endfor %}
{% else %}

{% if search %}No technotes matching "{{ search }}".{% else %}No technotes.{% endif %}

{% if has_write and not search %} Create the first technote {% endif %}
{% endif %} {% include "includes/_pagination_manual.html" %}
{% endblock %}