Sha256: 62257fc84d4f7574f47c12fe6bfe1fbe86b24a8d9b2e1ea6c1bb75c82a1b7483

Contents?: true

Size: 1.64 KB

Versions: 3

Compression:

Stored size: 1.64 KB

Contents

<!-- Page Content -->
<div id="page-content-wrapper">
  <div class="container-fluid">
    <div class="row">
      <!--Page Title -->
      <div class="Page_Title">
        <h3>Smells</h3>
      </div>
      <!--End Page Title -->
      <div class="Content_Wrapper">
        <table id="smellsTable" class="table smells-index-table index-table sortable-table">
          <thead>
            <tr>
              <th width="30%" class="table-header">Smell<span class="sort-type"></span></th>
              <th width="65%" class="table-header">Locations<span class="sort-type"></span></th>
              <th width="5%" class="table-header">Status<span class="sort-type"></span></th>
            </tr>
          </thead>
          <% @smells.each do |smell| %>
            <tr>
              <td><%= smell.type %></td>
              <td>
                <ul class="nav nav-pills">
                  <% smell.locations.each do |location| %>
                    <li role="presentation">
                      <a href="<%= smell_location_path(location) %>"><%= @analysed_module_names[location.pathname] %></a>
                    </li>
                  <% end %>
                </ul>
              </td>
              <td>
                <% if @show_status %>
                  <ul class="nav nav-pills">
                    <li role="presentation">
                      <span class="status-<%= smell.status %> circled-text circle"><%= smell.status %></span>
                    </li>
                  </ul>
                <% end %>
              </td>
            </tr>
          <% end %>
        </table>
      </div>
    </div>
  </div>
</div>
<!-- /#page-content-wrapper -->

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubycritic-4.9.1 lib/rubycritic/generators/html/templates/smells_index.html.erb
rubycritic-4.9.0 lib/rubycritic/generators/html/templates/smells_index.html.erb
rubycritic-4.8.1 lib/rubycritic/generators/html/templates/smells_index.html.erb