2012-10-18 18:24:07 +00:00
|
|
|
<%= div_for item do %>
|
|
|
|
<%= link_to 'Delete', item, :class => 'delete', :confirm => 'Delete this topic and all synapses linking to it?', :method => :delete, :remote => true%>
|
|
|
|
<p class="type"><%= item.item_category.name %></p>
|
|
|
|
<%= image_tag item.item_category.icon, :class => 'icon', :size => '50x50' %>
|
|
|
|
<%= link_to item.name, item_url(item), :class => 'title' %>
|
|
|
|
<div class="desc"><p><%=item.desc %></p></div>
|
|
|
|
<%= link_to item.link, item.link, :class => 'link', :target => '_blank' %>
|
2012-09-23 02:39:12 +00:00
|
|
|
<% end %>
|