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