This commit is contained in:
Andreas Stephanides
2015-04-22 18:43:24 +02:00
parent de215c16eb
commit 036f90e6e5
10 changed files with 146 additions and 8 deletions

View File

@@ -1,4 +1,9 @@
<li><%= link_to crawlobject.url do %> <b> <%= crawlobject.name %> (<%= crawlobject.published_at %>)</b> <%= crawlobject.text %>
<li><%= link_to crawlobject.url do %>
<b> <%= crawlobject.name %> (<%= crawlobject.published_at %>)</b><% end %>
<%= (crawlobject.text.html_safe) unless crawlobject.text.nil?%>
<% if crawlobject.has_attachments? %>
<%= render_attachments_for(crawlobject) %>
<%= link_to "load attachments", load_attachments_crawler_path(crawlobject), remote: true %>
<% end %>
<% if crawlobject.children.count >0 %>
@@ -8,4 +13,5 @@
<% end %>
</ul>
<% end %>
</li>