Sha256: 6e2036181b98914e11a0526cc35b378c6c8c614fa187a9dc77adc4221d03d452
Contents?: true
Size: 1.91 KB
Versions: 7
Compression:
Stored size: 1.91 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_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_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_listing_path(directory_listing), class: "btn blue-hoki" %> <%= link_to 'Destroy', directory_listing, 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