Sha256: 031ed690d620ecc439848ab618a8a32cd1aede83b6534e4e2d440d70a7c337ef
Contents?: true
Size: 1.98 KB
Versions: 7
Compression:
Stored size: 1.98 KB
Contents
<!-- Title System --> <% phc_title "Directory Listings" %> <% phc_title_tagline "Web Directory Listings" %> <div class="page-bar"> <!-- Bread Crumb --> <ul class="page-breadcrumb"> <li><%= link_to "Home", directory_root_path %><i class="fa fa-circle"></i></li> <li class="active"><%= link_to "Directory Listings", directory_category_listings_path %></li> </ul> </div> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <div class="portlet light"> <div class="portlet-title"> <div class="caption"> <span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span> </div> <div class="actions"> <%= link_to new_directory_category_listing_path, class: "btn blue-chambray btn-circle" do %> <i class="fa fa-plus"></i> Create a New Directory Listing <% end %> </div> </div> <div class="portlet-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-header-fixed"> <thead> <tr> <th>Business Name</th> <th>Category Name</th> <th></th> </tr> </thead> <tbody> <% @directory_listings.each do |directory_listing| %> <tr> <td></td> <td></td> <td> <div class="btn-group btn-group-xs btn-group-solid" role="group" aria-label="Directory Group"> <%= link_to 'Edit', edit_directory_category_listing(listings.category, listings), class: "btn blue-hoki" %> <%= link_to 'Destroy', directory_category_listing_path(listings.category, listings), class: "btn red-mint", method: :delete, data: { confirm: 'Are you sure? Removing a directory category will also remove all listing connections.?' } %> </div> </td> </tr> <% end %> </tbody> </table> </div> </div> </div> </div> </div>
Version data entries
7 entries across 7 versions & 1 rubygems