Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
fix itota#8 - displayed milestones becomes links to a trac query
Browse files Browse the repository at this point in the history
  • Loading branch information
thenor57 committed Dec 16, 2016
1 parent da114f7 commit 2e15d31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[egg_info]
tag_build =
tag_build = Develop
tag_date = False

[extract_messages]
Expand Down
4 changes: 4 additions & 0 deletions tracsubtickets/web_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ def _func(children, depth=0):
href = req.href.query(status='!closed',
owner=ticket['owner'])
e = tag.td(tag.a(ticket['owner'], href=href))
elif column == 'milestone':
href = req.href.query(status='!closed',
milestone=ticket['milestone'])
e = tag.td(tag.a(ticket['milestone'], href=href))
else:
e = tag.td(ticket[column])

Expand Down

0 comments on commit 2e15d31

Please sign in to comment.