Fixing mac index unauth
This commit is contained in:
parent
d522d0a43b
commit
40102775ea
|
@ -29,15 +29,23 @@
|
|||
<%= link_to 'Activity Graph', macs_history_path, :class => 'btn' if can? :read_details, Mac %>
|
||||
|
||||
<ul class="mac_list">
|
||||
<%
|
||||
@active_macs.each do |mac|
|
||||
Rails.logger.info mac.inspect %>
|
||||
<% @active_macs.each do |mac| %>
|
||||
<li>
|
||||
<% if user_signed_in? %>
|
||||
<%= link_to mac do %>
|
||||
<span title="<%= mac.mac if user_signed_in? %><%= " - "+mac.ip.to_s if can? :read_details, mac %><%= " - "+((Time.now - mac.since) / 1.hour).round(1).to_s+" hours" if can? :manage, mac %>">
|
||||
<%= mac.user.name unless mac.user.blank? %>
|
||||
<%= mac.mac if mac.user.blank? %>
|
||||
<%= "("+mac.note+")" unless mac.note.blank? %></span><% end %>
|
||||
<%= "("+mac.note+")" unless mac.note.blank? %>
|
||||
</span>
|
||||
<% end %>
|
||||
<% else %>
|
||||
<span>
|
||||
<%= mac.user.name unless mac.user.blank? %>
|
||||
<%= mac.mac if mac.user.blank? %>
|
||||
<%= "("+mac.note+")" unless mac.note.blank? %>
|
||||
</span>
|
||||
<% end %>
|
||||
<%= link_to ' Edit', edit_mac_path(mac) if can? :update, mac %> <br/>
|
||||
</li>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in New Issue
Block a user