Last active
June 8, 2021 17:44
-
-
Save ogryzek/ad8bb5f475c8b1e91b198743402593f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1><%= @name_plural %></h1> | |
<%% @<%= @name_plural %>.each do |<%= @name_singular %>| %> | |
<li><a href="/<%= @name_plural %>/<%%= <%= @name_singular %>.id %>"><%%= <%= @name_singular %>.id %></a></li> | |
<ul> | |
<%%= @attributes.each do |attribute| %> | |
<li><%%= attribute %>: <%%= <%= @name_singular %> %>.<%%= attribute %></li> | |
<%% end %> | |
</ul> | |
<%% end %> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment