Sha256: 685aec43d3e4070986a3114e1cca00c7ad44df173202fbc60b57433cffbea91b
Contents?: true
Size: 1.6 KB
Versions: 3
Compression:
Stored size: 1.6 KB
Contents
<!-- Bread Crumbs --> <header id="page-header"> <h1><%= @directory_category.catname %> Listing Index</h1> <ol class="breadcrumb"> <li><%= link_to "Home", directory_root_path %></li> <li class="active"><%= link_to "Directory Categories", directory_categories_path %></li> </ol> </header> <div id="content" class="padding-20"> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <div class="portlet box blue-chambray bordered"> <div class="portlet-title"> <div class="caption"> <i class="icon-notebook"></i> <span class="caption-subject bold uppercase"><%= @directory_category.catname %> Listing Index</span> </div> </div> <div class="portlet-body"> <%= render 'phcnotifi/notifications' %> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-header-fixed"> <tbody> <% @directory_catlists.each do |directory_catlists| %> <tr> <td><%= directory_catlists.category.catname %></td> <td><%= directory_catlists.listing.mlcompanyname %></td> <td><%= link_to 'Destroy', directory_category_catlist_path(directory_catlists.category, directory_catlists), class: "btn btn-danger", method: :delete, data: { confirm: 'Are you sure? This will only remove the listing from the directory category. The listing will still be saved with the members profile.' } %></td> </tr> <% end %> </tbody> </table> </div> <%= link_to 'New Listing', new_directory_category_catlist_path, class: "btn btn-primary" %> </div> </div> </div> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems