1
0
Fork 0
This repository has been archived on 2023-05-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lesson-decentralized_microb.../app/views/profiles/followers/index.html.erb
2021-03-10 16:09:15 +05:00

11 lines
332 B
Text

<div class="my-4">
<strong>&#10094;&nbsp;<%= link_to @profile.full_name, @profile %></strong>
</div>
<% if @profile.following_profiles.present? %>
<ul>
<% @profile.following_profiles.each do |following_profile| %>
<li><%= link_to following_profile.full_name, following_profile %></li>
<% end %>
</ul>
<% end %>