3feaa5d88f
Reload with turbolinks, error messages, confirm password validation Login and Signup modals
6 lines
240 B
Plaintext
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 %> |