##// END OF EJS Templates
Harden whitespace in log messages to show newlines, tabs, and spaces....
Harden whitespace in log messages to show newlines, tabs, and spaces. Due to the additional and inconsistent height of log messages, the other columns are vertically aligned to the top rather than the middle.

File last commit:

r0:548a840d
r45:5967ee78
Show More
small_report_list.html
16 lines | 1.1 KiB | text/html | HtmlLexer
project: initial commit
r0 <table class="errors-small-list">
<tr ng-repeat="report in reports track by $index" ng-show="reports.length > 0" class="animate-repeat">
<td class="c1 occurences"><span class="occurences" data-uib-tooltip="occurences">{{ report.group.occurences|numberToThousands }}</span></td>
<td class="ellipsis c2 report">
<a ui-sref="report.view_detail({groupId:report.group_id, reportId:report.report_id})" title="{{report.error}}" class="error-type">
{{ report.error || "Slow Report"}}</a>
<br/>
<span ng-show="report.group.summed_duration" class="duration" data-uib-tooltip="Average duration">{{report.group.summed_duration/report.group.occurences|round:2}}s</span>
<span class="url">{{ report.view_name || report.url_path}}</span>
</td>
<td class="info">
<strong ng-show="report.resource_id">@{{applications[report.resource_id].resource_name}}</strong><br/>
<span class="date">{{report.last_timestamp | isoToRelativeTime}}</span>
</td>
</tr>
</table>