<%= render(:partial => "nav") %>

Favorite Theses

Annotations
<% if !@favorite_theses[0].blank? %>
<%= render :partial => "favorites/th", :locals => {:display => "Title", :column => "title"} %> <%= render :partial => "favorites/th", :locals => {:display => "Registration Date", :column => "created_at"} %> <% for thesis in @favorite_theses %> <% end %>
<%= thesis['title'] %> <%= thesis['created_at'] %>
<% if thesis['personal_annotation'] != nil %>
Annotation: <%= thesis['personal_annotation'] %>
<% end %>
<%= button_to 'Details', crawlers_theses_crawler_show_detail_url(:id => thesis['id']) %> <%= button_to 'Delete', {:action => "delete_thesis", :id => thesis['id']}, :method => 'delete' %>
<% else %> No favorite theses added yet! <% end %>