52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
<%= render(:partial => "nav") %>
|
|
|
|
<h2>Favorite People</h2>
|
|
|
|
<% if !@favorite_people[0].blank? %>
|
|
<div class="table_wrapper">
|
|
<table>
|
|
<tr>
|
|
<th>Thumb</th>
|
|
<%= render :partial => "favorites/th", :locals => {:display => "First Name", :column => "first_name"} %>
|
|
<%= render :partial => "favorites/th", :locals => {:display => "Last Name", :column => "last_name"} %>
|
|
<%= render :partial => "favorites/th", :locals => {:display => "Registration Date", :column => "created_at"} %>
|
|
</tr>
|
|
<% for person in @favorite_people %>
|
|
<tr>
|
|
<td>
|
|
<%= link_to crawlers_people_crawler_show_detail_url(:tiss_id => person['tiss_id']) do %>
|
|
<span>
|
|
<% if person['picture_uri'] != nil %>
|
|
<%= image_tag @host + person['picture_uri'], class: 'thumb' %>
|
|
<% else %>
|
|
<%= show_svg('account_circle-black-48dp.svg') %>
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
</td>
|
|
<td>
|
|
<%= person['first_name'] %>
|
|
</td>
|
|
<td>
|
|
<%= person['last_name'] %>
|
|
</td>
|
|
<td>
|
|
<%= person['created_at'] %>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<%= button_to 'Details', crawlers_people_crawler_show_detail_url(:tiss_id => person['tiss_id']) %>
|
|
</td>
|
|
<td>
|
|
<%= button_to "Delete", {:action => "delete_person", :tiss_id => person['tiss_id']}, :method => 'delete' %>
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</div>
|
|
<% else %>
|
|
No favorite people added yet!
|
|
<% end %> |