tap/app/views/users/edit_dagschotel.html.erb

12 lines
291 B
Plaintext
Raw Normal View History

2015-03-19 13:59:37 +00:00
<% 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 %>