Author: rjollos
Date: Wed Oct 30 05:43:50 2013
New Revision: 1536969
URL: http://svn.apache.org/r1536969
Log:
0.8dev: On relations widget and manage relations page, show the ticket
shortname followed by the ticket summary. Refs #690.
Modified:
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
bloodhound/trunk/bloodhound_relations/bhrelations/templates/relations_manage.html
Modified:
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html?rev=1536969&r1=1536968&r2=1536969&view=diff
==============================================================================
---
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
(original)
+++
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
Wed Oct 30 05:43:50 2013
@@ -40,9 +40,9 @@
<span
class="visible-phone">${item['destticket'].env.product.prefix}</span>
</a>
</td>
- <td><a href="${item['desthref']}">
- ${shortname_of(item['destticket'].resource) + ' - ' +
summary_of(item['destticket'].resource)}
- </a></td>
+ <td><a href="${item['desthref']}"
class="${classes(item['destticket'].status, 'ticket')}">
+ ${shortname_of(item['destticket'].resource)}</a> -
${summary_of(item['destticket'].resource)}
+ </td>
<td>$item.comment</td>
<td>$item.author</td>
<td class="hidden-phone">${pretty_dateinfo(item.when)}</td>
Modified:
bloodhound/trunk/bloodhound_relations/bhrelations/templates/relations_manage.html
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_relations/bhrelations/templates/relations_manage.html?rev=1536969&r1=1536968&r2=1536969&view=diff
==============================================================================
---
bloodhound/trunk/bloodhound_relations/bhrelations/templates/relations_manage.html
(original)
+++
bloodhound/trunk/bloodhound_relations/bhrelations/templates/relations_manage.html
Wed Oct 30 05:43:50 2013
@@ -103,7 +103,9 @@
<span
class="visible-phone">${item['destticket'].env.product.prefix}</span>
</a>
</td>
- <td><a
href="${item['desthref']}">#${item['destticket'].id}</a> -
${item['destticket'].summary}</td>
+ <td><a href="${item['desthref']}"
class="${classes(item['destticket'].status, 'ticket')}">
+ ${shortname_of(item['destticket'].resource)}</a> -
${summary_of(item['destticket'].resource)}
+ </td>
<td>$item.comment</td>
<td>$item.author</td>
<td class="hidden-phone">${pretty_dateinfo(item.when)}</td>