Files
bit/app/views/links/_index.html.erb
T
Juan Rodriguez 3feaa5d88f refactor: Modal layout and turbolinks optimization
Reload with turbolinks, error messages, confirm password validation

Login and Signup modals
2021-06-14 15:10:56 -05:00

6 lines
240 B
Plaintext

<% if logged_in? %>
<h2 class="text-2xl leading-7 text-gray-900 sm:text-3xl sm:truncate m-3 mt-6">My links</h2>
<% @current_user.links.each do |link| %>
<%= render partial: "links/show", locals: { link: link } %>
<% end %>
<% end %>