Sha256: 0ce0be7dc9b4d25ac6968b2f8bf3061db8bfdfd4b0038ecf5a9b14aa68b8ad7f
Contents?: true
Size: 1 KB
Versions: 20
Compression:
Stored size: 1 KB
Contents
<div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <th>Address Line 1</th> <th>City</th> <th>Province</th> <th>Type</th> </tr> </thead> <tbody> <% @member_profile.addresses.each do |members_main_address| %> <tr> <td><%= members_main_address.address_line_1 %></td> <td><%= members_main_address.address_city %></td> <td><%= members_main_address.address_province %></td> <td><%= members_main_address.address_type %></td> </tr> <% end %> </tbody> </table> <%= link_to "See All of " + @member_profile.profile_first_name + " " + @member_profile.profile_last_name + " Addresses", phcdevworks_members.member_profile_addresses_path(@member_profile), class: "btn btn-primary btn-xs" %> <%= link_to "Add a New Address for " + @member_profile.profile_first_name + " " + @member_profile.profile_last_name, phcdevworks_members.new_member_profile_address_path(@member_profile), class: "btn btn-purple btn-xs" %> </div>
Version data entries
20 entries across 20 versions & 1 rubygems