{% macro linkindex(project) %}
{{ project.name }} project page
{% endmacro %} {% macro issue_table(issues, show_component=false, show_release=false) %} {% if show_release %} {% endif %} {% if show_component %} {% endif %} {% for issue in issues %} {% if show_release %} {% endif %} {% if show_component %} {% endif %} {% endfor %}
Created DescriptionReleaseComponent
{{ issue|imagetag }} {{ issue.creation_time|dateformat }} {{ issue|link }} {{ issue|release|link }} {{ issue|component|link }}
{% endmacro %} {% macro event_log(events) %} {% for time, who, what, comment in events|reverse %} {% endfor %}
{{ time|timeformat }} {{ who|email|e }} {{ what }}
{{ comment|addlinks }}
{% endmacro %} {% macro recent_activity(activity) %} {% for date, email, text, comment, issue in activity %} {% endfor %}
{{ date|dateformat }} {{ issue|link(image=true) }} {{ text }}
{% endmacro %}