Sha256: f8d05188eb21ceae52151e833a0d2b14897a0c8d2ddd0f3de9da3d38281f59fa
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
<div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <thead class="thead-inverse"> <tr> <th>Company Name</th> <th>Conact Name</th> <th>City</th> <th>Province</th> <th>Country</th> <th>Listing Phone</th> <th>Listing Website</th> <th></th> </tr> </thead> <tbody> <tr> <td><%= link_to @member_listing.listing_companyname, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_contactname, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_city, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_province, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_country, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_phone, phcmemberspro.edit_member_profile_listing_path %></td> <td><%= link_to @member_listing.listing_website, phcmemberspro.edit_member_profile_listing_path %></td> <td> <div class="btn-group d-flex" role="group"> <%= link_to 'Update', edit_member_profile_listing_path, class: "btn btn-purple btn-xs" %> <%= link_to 'Remove', member_profile_listing_path, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure? This will remove listing information and cannot be reversed.' } %> </div> </td> </tr> </tbody> </table> </div>
Version data entries
2 entries across 2 versions & 1 rubygems