Skip to content

Commit

Permalink
3844 Fix the spacing in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
sarken committed May 11, 2014
1 parent b16716a commit ff9db00
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions app/views/fandoms/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
<!--main content-->
<h3 class="heading"><%= ts('Relationships by Character') %></h3>
<% unless @characters.blank? %>
<ul class="characters relationships index group">
<% for character in @characters %>
<li class="listbox group">
<h4 class="heading"><%= link_to character.name, tag_works_path(character) %></h4>
<% unless character.relationships.empty? %>
<ul class="tags commas index group">
<% for relationship in character.relationships %>
<li><%= link_to relationship.name, tag_works_path(relationship), :class => "tag" %></li>
<% end %>
</ul>
<ul class="characters relationships index group">
<% for character in @characters %>
<li class="listbox group">
<h4 class="heading"><%= link_to character.name, tag_works_path(character) %></h4>
<% unless character.relationships.empty? %>
<ul class="tags commas index group">
<% for relationship in character.relationships %>
<li><%= link_to relationship.name, tag_works_path(relationship) %></li>
<% end %>
</ul>
<% end %>
</li>
<% end %>
</li>
<% end %>
</ul>
</ul>
<% end %>
<!--/content-->

0 comments on commit ff9db00

Please sign in to comment.