app/views/phcmemberspro/members/businesses/show.html.erb in phcmemberspro-5.1.3 vs app/views/phcmemberspro/members/businesses/show.html.erb in phcmemberspro-5.1.4

- old
+ new

@@ -17,5 +17,74 @@ <!-- 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"> + </div> + </div> + + <div class="portlet-body"> + <p> + <strong>Contact Name:</strong> + <%= @members_business.mbcompanyname %> + </p> + <p> + <strong>Company Name:</strong> + <%= @members_business.mbcontactname %> + </p> + + <p> + <strong>Address Line 1:</strong> + <%= @members_business.mbaddressl1 %> + </p> + + <p> + <strong>Address Line 2:</strong> + <%= @members_business.mbaddressl2 %> + </p> + + <p> + <strong>City:</strong> + <%= @members_business.mbcity %> + </p> + + <p> + <strong>Province:</strong> + <%= @members_business.mbprovince %> + </p> + + <p> + <strong>Country:</strong> + <%= @members_business.mbcountry %> + </p> + + <p> + <strong>PostalCode:</strong> + <%= @members_business.mbpostalcode %> + </p> + + <p> + <strong>Phone:</strong> + <%= @members_business.mbphone %> + </p> + + <p> + <strong>Email:</strong> + <%= @members_business.mbcontactemail %> + </p> + </div> + </div> + + </div> +</div>