Skip to content

Commit

Permalink
Merge pull request #1437 from sarken/issue_3844
Browse files Browse the repository at this point in the history
3844 Index class missing on Show Fandom
  • Loading branch information
CristinaRO committed Jun 13, 2014
2 parents 193a7af + ff9db00 commit f81d402
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions app/views/fandoms/show.html.erb
Expand Up @@ -10,21 +10,21 @@
<!--subnav-->

<!--main content-->
<h3 class="heading"><%= ts('Characters and Relationships') %></h3>
<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">
<% 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 f81d402

Please sign in to comment.