${_(sorted_field)}
Ticket
${_(third_field)}
${ticket[sorted_field]}
${ticket['type']}#${ticket['id']}: ${ticket['summary']}
${_(third_field)}: ${ticket[third_field]}
Open Date: ${ticket['due_assign']}
Close Date: ${ticket['due_close']}
Complete: ${ticket['complete']}%
Description: ${ticket['description']}
#${ticket['id']}:${ticket['summary'][0:10]}
${ticket[third_field]}
|
${weekdays[cur.weekday()]}
${cur.month}/${cur.day}
${cur.year}/${cur.month}
term:
assign = -1
if cls < 0 and not (assign != -1):
cls = 0
if (cls - assign + assign) > term:
cls = term - 1
todow = (cls-assign+1)*dw
if assign*dw+todow > term*dw:
todow = (term-assign)*dw
latew = 0
if base > assign:
latew = (base-assign+1)*dw
if latew > todow:
latew = todow
complete = ticket['complete']
if complete == None or complete == "" or todow <= 0:
complete = 0
else:
complete = int(complete)*barw/100-(gap)*dw
if assign*dw+complete > term*dw:
complete = (term-assign)*dw
?>
|