36 lines
984 B
Plaintext
36 lines
984 B
Plaintext
<%= render(:partial => "nav") %>
|
|
|
|
<h2>Favorite Theses</h2>
|
|
|
|
<% if !@favorite_theses[0].blank? %>
|
|
<div class="table_wrapper">
|
|
<table>
|
|
<tr>
|
|
<%= render :partial => "favorites/th", :locals => {:display => "Title", :column => "title"} %>
|
|
<%= render :partial => "favorites/th", :locals => {:display => "Registration Date", :column => "created_at"} %>
|
|
</tr>
|
|
<% for thesis in @favorite_theses %>
|
|
<tr>
|
|
<td>
|
|
<%= thesis['title'] %>
|
|
</td>
|
|
<td>
|
|
<%= thesis['created_at'] %>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<%= button_to 'Details', crawlers_theses_crawler_show_detail_url(:id => thesis['id']) %>
|
|
</td>
|
|
<td>
|
|
<%= button_to 'Delete', {:action => "delete_thesis", :id => thesis['id']}, :method => 'delete' %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</div>
|
|
<% else %>
|
|
No favorite theses added yet!
|
|
<% end %>
|