app/views/phcmemberspro/member/addresses/components/_address_address.html.erb in phcmemberspro-9.6.4 vs app/views/phcmemberspro/member/addresses/components/_address_address.html.erb in phcmemberspro-9.7.0
- old
+ new
@@ -1,29 +1,31 @@
-<p>
-<strong>Address Line 1:</strong>
-<%= @member_address.mcaddressl1 %>
-</p>
+<div class="table-responsive">
+ <table class="table table-striped table-bordered table-hover table-header-fixed">
-<p>
-<strong>Address Line 2:</strong>
-<%= @member_address.mcaddressl2 %>
-</p>
+ <thead class="thead-inverse">
+ <tr>
+ <th>Street Address</th>
+ <th>Address Line 2</th>
+ <th>City</th>
+ <th>Province</th>
+ <th>Country</th>
+ <th>Postal Code</th>
+ <th>Listing Email</th>
+ <th>Listing Phone</th>
+ <th>Listing Email</th>
+ <th>Listing Website</th>
+ </tr>
+ </thead>
-<p>
-<strong>City:</strong>
-<%= @member_address.mccity %>
-</p>
+ <tbody>
+ <tr>
+ <td class="highlight"><%= @member_address.mcaddressl1 %></td>
+ <td class="highlight"><%= @member_address.mcaddressl2 %></td>
+ <td class="highlight"><%= @member_address.mccity %></td>
+ <td class="highlight"><%= @member_address.mcprovince %></td>
+ <td class="highlight"><%= @member_address.mccountry %></td>
+ <td class="highlight"><%= @member_address.mcpostalcode %></td>
+ </tr>
+ </tbody>
-<p>
-<strong>Province:</strong>
-<%= @member_address.mcprovince %>
-</p>
-
-<p>
-<strong>Country:</strong>
-<%= @member_address.mccountry %>
-</p>
-
-<p>
-<strong>PostalCode:</strong>
-<%= @member_address.mcpostalcode %>
-</p>
+ </table>
+</div>