Open-Source-Access-Control-.../app/views/resources/_resource.html.erb

10 lines
289 B
Plaintext
Raw Normal View History

2014-02-09 09:08:08 +00:00
<div class="col-sm-2">
<div class="thumbnail">
<%= link_to(resource) do %>
<%= image_tag(resource.picture.url(:thumb)) if resource.picture? %>
<strong><%=h resource.name %></strong>
<% end %>
<%= "Owned by "+resource.user.name if resource.user %>
</div>
</div>