I found this in bhtheme/templates/bh_milestone_view.html (line 54):
<py:def function="milestone_owner()">
<py:choose>
<py:when test="milestone.owner">
Assigned to
<a href="${href.query(owner=milestone.owner, status='!closed',
milestone=milestone.name, order='priority')}">${milestone.name
}</a>
</py:when>
<py:otherwise> </py:otherwise>
</py:choose>
</py:def>
I have two questions:
1) ${milestone.name} looks wrong. It makes the output something like
"Assigned to milestone1". I guess it was supposed to be ${milestone.owner},
which gives "Assigned to admin".
2) Currently, milestones don't have owners. Are there plans to give them
owners? If not, this code is unused.
Thanks for reading,
James