|
|
@@ -10,7 +10,9 @@
|
10
|
10
|
<div class='table-responsive'>
|
11
|
11
|
<table class='table table-striped events'>
|
12
|
12
|
<tr>
|
13
|
|
- <th>Source</th>
|
|
13
|
+ <% unless @agent %>
|
|
14
|
+ <th>Source</th>
|
|
15
|
+ <% end %>
|
14
|
16
|
<th>Created</th>
|
15
|
17
|
<th>Payload</th>
|
16
|
18
|
<th></th>
|
|
|
@@ -19,7 +21,9 @@
|
19
|
21
|
<% @events.each do |event| %>
|
20
|
22
|
<% next unless event.agent %>
|
21
|
23
|
<%= content_tag :tr, class: (highlighted?(event.id) ? 'hl' : nil) do %>
|
22
|
|
- <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
|
|
24
|
+ <% unless @agent %>
|
|
25
|
+ <td><%= link_to event.agent.name, agent_path(event.agent, return: request.fullpath) %></td>
|
|
26
|
+ <% end %>
|
23
|
27
|
<td title='<%= event.created_at %>'><%= time_ago_in_words event.created_at %> ago</td>
|
24
|
28
|
<td class='payload'><%= truncate event.payload.to_json, :length => 90, :omission => "" %></td>
|
25
|
29
|
<td>
|