mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
No corresponding log method on servers controller
This commit is contained in:
parent
841ffe673d
commit
cf0825ddf6
1 changed files with 0 additions and 21 deletions
|
@ -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>
|
|
Loading…
Reference in a new issue