36 lines
878 B
Plaintext
36 lines
878 B
Plaintext
<%= render(:partial => "nav") %>
|
|
|
|
<h2>Favorite Theses</h2>
|
|
|
|
<% if !@favorite_theses[0].blank? %>
|
|
<div class="table_wrapper">
|
|
<table>
|
|
<tr>
|
|
<th><%= sortable "Title", "title" %></th>
|
|
<th><%= sortable "Registration Date", "created_at" %></th>
|
|
</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 %>
|