No corresponding log method on servers controller

This commit is contained in:
cblanc 2015-05-13 12:34:55 +01:00 committed by simplefl
parent a6150c5261
commit 529df1e525

View file

@ -1,21 +0,0 @@
<h1>
Server Log: <%= h @server %>
</h1>
<div class="box wide">
<table class="data">
<tr>
<th width="10%">Date</th>
<th width="10%">Type</th>
<th width="80%">Message</th>
</tr>
<% @server.logs.each do |log| %>
<tr class="<%= cycle('even', 'odd') %>">
<td><%= shorttime log.created_at %></td>
<td><%= log.domains[log.domain] %></td>
<td><%= h log.text %></td>
</tr>
<% end %>
</table>
</div>