<% import datetime keywords = { ":unstarted":"Unstarted", ":closed":"Closed", ":bugfix":"Bugfix", ":task":"Task", ":feature":"Feature" } %> <%include file="navigation.html"/>

Issue - ${issue["title"] | h}

${issue["desc"] | h}

Details

Id:
${issue["id"] | h}
Type:
${keywords[issue["type"]] | h}
Creation Time:
${issue["creation_time"].strftime("%Y-%m-%d %H:%M UTC") | h}
Reporter:
${issue["reporter"] | h}
Release:
% if release:
${issue["release"] | h}
% else:
None
% endif
Status:
${keywords[issue["status"]] | h}

Issue Log

% for event in issue["log_events"]: % endfor
${event[0].strftime("%Y-%m-%d %H:%M UTC") | h}${event[1] | h}${event[2] | h}${event[3] | h}