| 1 | Index: web_ui.py |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- web_ui.py (revision 7499) |
|---|
| 4 | +++ web_ui.py (working copy) |
|---|
| 5 | @@ -1278,8 +1278,6 @@ |
|---|
| 6 | 'action_controls': action_controls, |
|---|
| 7 | 'action': selected_action, |
|---|
| 8 | 'change_preview': change_preview, |
|---|
| 9 | - 'reporter_link': self._query_link(req, 'reporter', ticket['reporter']), |
|---|
| 10 | - 'owner_link': self._query_link(req, 'owner', ticket['owner']) |
|---|
| 11 | }) |
|---|
| 12 | |
|---|
| 13 | def rendered_changelog_entries(self, req, ticket, when=None): |
|---|
| 14 | Index: templates/ticket.html |
|---|
| 15 | =================================================================== |
|---|
| 16 | --- templates/ticket.html (revision 7499) |
|---|
| 17 | +++ templates/ticket.html (working copy) |
|---|
| 18 | @@ -137,9 +137,9 @@ |
|---|
| 19 | not in ('type', 'owner')]"> |
|---|
| 20 | <tr> |
|---|
| 21 | <th id="h_reporter">Reported by:</th> |
|---|
| 22 | - <td headers="h_reporter" class="searchable">${reporter_link}</td> |
|---|
| 23 | + <td headers="h_reporter" class="searchable">${authorinfo(ticket.reporter)}</td> |
|---|
| 24 | <th id="h_owner">Owned by:</th> |
|---|
| 25 | - <td headers="h_owner">${owner_link} |
|---|
| 26 | + <td headers="h_owner">${ticket.owner and authorinfo(ticket.owner) or ''} |
|---|
| 27 | </td> |
|---|
| 28 | </tr> |
|---|
| 29 | <tr py:for="row in group(fields, 2, lambda f: f.type != 'textarea')" |
|---|