tap/app/views/users/edit_dagschotel.html.erb
2015-03-19 14:59:37 +01:00

12 lines
291 B
Plaintext

<% if current_user.dagschotel.present? %>
<h3>Current Dagschotel:</h3>
<div>
<%= render current_user.dagschotel %>
</div>
<% end %>
<h4>Choose new Dagschotel:</h4>
<% Product.all.each do |p| %>
<%= link_to image_tag(p.avatar), user_dagschotel_path(current_user, p) %>
<% end %>