Sha256: daf39b82951d05dc8d5db5d53b998a0e86f4c73597964b30a0653e2c3460bf01
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
<div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <thead class="thead-inverse"> <tr> <th>Street Address</th> <th>City</th> <th>Province</th> <th>Country</th> <th>Postal Code</th> <th>Address Type</th> <th></th> </tr> </thead> <tbody> <tr> <td><%= link_to @member_address.address_address_line_1, phcmembers.edit_member_profile_address_path %></td> <td><%= link_to @member_address.address_city, phcmembers.edit_member_profile_address_path %></td> <td><%= link_to @member_address.address_province, phcmembers.edit_member_profile_address_path %></td> <td><%= link_to @member_address.address_country, phcmembers.edit_member_profile_address_path %></td> <td><%= link_to @member_address.address_postal_code, phcmembers.edit_member_profile_address_path %></td> <td><%= link_to @member_address.address_type, phcmembers.edit_member_profile_address_path %></td> <td> <div class="btn-group d-flex" role="group"> <%= link_to 'Update', edit_member_profile_address_path, class: "btn btn-purple btn-xs" %> <%= link_to 'Remove', member_profile_address_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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcmembers-63.0.0 | app/views/phcmembers/member/addresses/components/_address_table.html.erb |