addcrawlobjects

This commit is contained in:
Andreas Stephanides
2015-04-01 00:01:41 +02:00
parent bd7aac9bb7
commit ee137959c4
9 changed files with 168 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
<li><%= link_to crawlobject.url do %> <b> <%= crawlobject.name %> (<%= crawlobject.published_at %>)</b> <%= crawlobject.text %>
<% end %>
<% if crawlobject.children.count >0 %>
<ul>
<% crawlobject.children.each do |cc| %>
<%= render cc %>
<% end %>
</ul>
<% end %>
</li>