phcmemberspro 57.0.0 → 58.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/phcmemberspro/application.js +17 -2
  3. data/app/assets/stylesheets/phcmemberspro/application.scss +1 -1
  4. data/app/controllers/phcmemberspro/member/profiles_controller.rb +3 -2
  5. data/app/views/layouts/phcmemberspro/application.html.erb +2 -2
  6. data/app/views/layouts/phcmemberspro/application_full_width.html.erb +82 -0
  7. data/app/views/layouts/phcmemberspro/components/backend/navigation/_top_menu.html.erb +1 -1
  8. data/app/views/layouts/phcmemberspro/components/backend/sidebars/_side_menu.html.erb +1 -1
  9. data/app/views/phcmemberspro/directory/categories/_form.html.erb +11 -7
  10. data/app/views/phcmemberspro/directory/categories/edit.html.erb +11 -43
  11. data/app/views/phcmemberspro/directory/categories/index.html.erb +20 -49
  12. data/app/views/phcmemberspro/directory/categories/new.html.erb +11 -43
  13. data/app/views/phcmemberspro/member/addresses/_form.html.erb +23 -23
  14. data/app/views/phcmemberspro/member/addresses/edit.html.erb +11 -43
  15. data/app/views/phcmemberspro/member/addresses/index.html.erb +37 -66
  16. data/app/views/phcmemberspro/member/addresses/new.html.erb +11 -43
  17. data/app/views/phcmemberspro/member/listings/_form.html.erb +31 -36
  18. data/app/views/phcmemberspro/member/listings/edit.html.erb +11 -43
  19. data/app/views/phcmemberspro/member/listings/index.html.erb +41 -70
  20. data/app/views/phcmemberspro/member/listings/new.html.erb +11 -43
  21. data/app/views/phcmemberspro/member/profiles/_form.html.erb +20 -14
  22. data/app/views/phcmemberspro/member/profiles/components/_profile_addresses_table.html.erb +1 -0
  23. data/app/views/phcmemberspro/member/profiles/components/{_profile_audits.html.erb → _profile_audits_table.html.erb} +0 -0
  24. data/app/views/phcmemberspro/member/profiles/components/_profile_header.html.erb +29 -0
  25. data/app/views/phcmemberspro/member/profiles/components/_profile_listings_table.html.erb +1 -0
  26. data/app/views/phcmemberspro/member/profiles/edit.html.erb +11 -42
  27. data/app/views/phcmemberspro/member/profiles/index.html.erb +33 -62
  28. data/app/views/phcmemberspro/member/profiles/new.html.erb +11 -42
  29. data/app/views/phcmemberspro/member/profiles/show.html.erb +74 -27
  30. data/lib/phcmemberspro/version.rb +1 -1
  31. metadata +5 -4
  32. data/app/views/phcmemberspro/member/profiles/components/_profile_main.html.erb +0 -52
@@ -6,51 +6,19 @@
6
6
  <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
7
  <!-- Title System -->
8
8
 
9
- <!-- Page Header -->
10
- <div class="row wrapper border-bottom white-bg page-heading">
11
- <div class="col-sm-8">
12
- <h2><%= yield(:phc_title) %></h2>
13
- <!-- Bread Crumb -->
14
- <ol class="breadcrumb">
15
- <li><%= yield(:phc_breadcrumb_one) %></li>
16
- <li><%= yield(:phc_breadcrumb_two) %></li>
17
- <li class="active"><%= yield(:phc_breadcrumb_three) %></li>
18
- </ol>
19
- <!-- Bread Crumb -->
20
- </div>
21
- <div class="col-sm-4">
22
- <div class="title-action">
23
- <%= link_to phcmemberspro.member_profile_listings_path, class: "btn btn-primary" do %>
24
- <i class="fa fa-address-card"></i> <%= @members_profile_info.mfirstname + ' ' + @members_profile_info.mlastname %> Listing Index
25
- <% end %>
26
- </div>
27
- </div>
28
- </div>
29
- <!-- Page Header -->
30
-
31
9
  <!-- Page Content -->
32
- <div class="wrapper wrapper-content animated fadeInRight">
33
- <div class="row">
34
- <div class="col-lg-12">
35
-
36
- <div class="ibox float-e-margins">
37
- <div class="ibox-title">
38
- <h5><%= yield(:phc_title_tagline) %></h5>
39
- <div class="ibox-tools">
40
- <a class="collapse-link">
41
- <i class="fa fa-chevron-up"></i>
42
- </a>
43
- <a class="close-link">
44
- <i class="fa fa-times"></i>
45
- </a>
46
- </div>
47
- </div>
48
- <div class="ibox-content">
49
- <%= render 'form', { form_url: member_profile_listings_path } %>
50
- </div>
51
- </div>
52
-
10
+ <div class="panel panel-inverse">
11
+ <div class="panel-heading">
12
+ <div class="panel-heading-btn">
13
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
14
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
15
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
16
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
53
17
  </div>
18
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
19
+ </div>
20
+ <div class="panel-body">
21
+ <%= render 'form', { form_url: member_profile_address_path } %>
54
22
  </div>
55
23
  </div>
56
24
  <!-- Page Content -->
@@ -1,31 +1,37 @@
1
- <%= form_for(member_profile) do |f| %>
1
+ <!-- PHCMembers Form - Profiles -->
2
+ <%= form_with(model: @member_profile, local: true) do |phc_members_pro_member_profile| %>
2
3
 
3
- <!-- PHC-Notifi Render Validation -->
4
+ <!-- PHCNotifi Render Validation -->
4
5
  <%= render 'phcnotifi/validations', :object => @member_profile %>
6
+ <!-- PHCNotifi Render Validation -->
5
7
 
8
+ <!-- PHCMembers Fields - Profiles -->
6
9
  <div class="form-group field_with_errors">
7
- <%= f.label :mfirstname, "First Name*" %>
8
- <%= f.text_field :mfirstname, class: 'form-control', placeholder: 'First Name' %>
10
+ <%= phc_members_pro_member_profile.label :mfirstname, "First Name*" %>
11
+ <%= phc_members_pro_member_profile.text_field :mfirstname, class: 'form-control', placeholder: 'First Name' %>
9
12
  </div>
10
13
  <div class="form-group field_with_errors">
11
- <%= f.label :mlastname, "Last Name*" %>
12
- <%= f.text_field :mlastname, class: 'form-control', placeholder: 'Last Name' %>
14
+ <%= phc_members_pro_member_profile.label :mlastname, "Last Name*" %>
15
+ <%= phc_members_pro_member_profile.text_field :mlastname, class: 'form-control', placeholder: 'Last Name' %>
13
16
  </div>
14
17
  <div class="form-group field_with_errors">
15
- <%= f.label :mtitle, "Job Title" %>
16
- <%= f.text_field :mtitle, class: 'form-control', placeholder: 'Job Title/Salutation' %>
18
+ <%= phc_members_pro_member_profile.label :mtitle, "Job Title" %>
19
+ <%= phc_members_pro_member_profile.text_field :mtitle, class: 'form-control', placeholder: 'Job Title/Salutation' %>
17
20
  </div>
18
21
  <div class="form-group field_with_errors">
19
- <%= f.label :memail, "Contact Email Address*" %>
20
- <%= f.text_field :memail, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
22
+ <%= phc_members_pro_member_profile.label :memail, "Contact Email Address*" %>
23
+ <%= phc_members_pro_member_profile.text_field :memail, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
21
24
  </div>
22
25
  <div class="form-group field_with_errors">
23
- <%= f.label :mphone, "Contact Phone Number*" %>
24
- <%= f.text_field :mphone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
26
+ <%= phc_members_pro_member_profile.label :mphone, "Contact Phone Number*" %>
27
+ <%= phc_members_pro_member_profile.text_field :mphone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
25
28
  </div>
26
-
29
+ <br>
27
30
  <div class="actions">
28
- <%= f.submit class: "btn blue-soft" %>
31
+ <%= phc_members_pro_member_profile.submit class: "btn btn-primary btn-gradient waves-effect waves-light btn-md" %>
29
32
  </div>
33
+ <br>
34
+ <!-- PHCMembers Fields - Profiles -->
30
35
 
31
36
  <% end %>
37
+ <!-- PHCMembers Form - Profiles -->
@@ -19,4 +19,5 @@
19
19
  <% end %>
20
20
  </tbody>
21
21
  </table>
22
+ <%= link_to "See All Addresses", phcmemberspro.member_profile_addresses_path(@member_profile), class: "btn btn-primary btn-xs" %>
22
23
  </div>
@@ -0,0 +1,29 @@
1
+ <div class="profile-header">
2
+ <!-- Member Profiles - Header - Cover -->
3
+ <div class="profile-header-cover"></div>
4
+ <!-- Member Profiles - Header - Cover -->
5
+
6
+ <!-- Member Profiles - Header - Content -->
7
+ <div class="profile-header-content">
8
+ <div class="profile-header-img">
9
+ <%= image_tag current_user.gravatar_url :secure => true, :filetype => :png, :size => 128 %>
10
+ </div>
11
+ <div class="profile-header-info">
12
+ <h4 class="m-t-10 m-b-5"><%= current_user.firstname + ' ' + current_user.lastname %></h4>
13
+ <p class="m-b-10"><%= current_user.username %></p>
14
+ <%= link_to edit_member_profile_path(@member_profile), class: "btn btn-xs btn-yellow" do %>
15
+ <i class="far fa-pencil-alt"></i> Edit Member
16
+ <% end %>
17
+ </div>
18
+ </div>
19
+ <!-- Member Profiles - Header - Content -->
20
+
21
+ <!-- Member Profiles - Header - Tab Bar -->
22
+ <ul class="profile-header-tab nav nav-tabs">
23
+ <li class="nav-item"><a href="#profile-addresses" class="nav-link active" data-toggle="tab">MEMBER ADDRESSES</a></li>
24
+ <li class="nav-item"><a href="#profile-listings" class="nav-link" data-toggle="tab">MEMBER LISTINGS</a></li>
25
+ <li class="nav-item"><a href="#profile-logs" class="nav-link" data-toggle="tab">MEMBER CHANGE LOG</a></li>
26
+ </ul>
27
+ <!-- Member Profiles - Header - Tab Bar -->
28
+
29
+ </div>
@@ -19,4 +19,5 @@
19
19
  <% end %>
20
20
  </tbody>
21
21
  </table>
22
+ <%= link_to "See All Listings", phcmemberspro.member_profile_listings_path(@member_profile), class: "btn btn-primary btn-xs" %>
22
23
  </div>
@@ -5,50 +5,19 @@
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
6
  <!-- Title System -->
7
7
 
8
- <!-- Page Header -->
9
- <div class="row wrapper border-bottom white-bg page-heading">
10
- <div class="col-sm-8">
11
- <h2><%= yield(:phc_title) %></h2>
12
- <!-- Bread Crumb -->
13
- <ol class="breadcrumb">
14
- <li><%= yield(:phc_breadcrumb_one) %></li>
15
- <li class="active"><%= yield(:phc_breadcrumb_two) %></li>
16
- </ol>
17
- <!-- Bread Crumb -->
18
- </div>
19
- <div class="col-sm-4">
20
- <div class="title-action">
21
- <%= link_to phcmemberspro.member_profiles_path, class: "btn btn-primary" do %>
22
- <i class="fa fa-id-card-o"></i> Back to Member's Index
23
- <% end %>
24
- </div>
25
- </div>
26
- </div>
27
- <!-- Page Header -->
28
-
29
8
  <!-- Page Content -->
30
- <div class="wrapper wrapper-content animated fadeInRight">
31
- <div class="row">
32
- <div class="col-lg-12">
33
-
34
- <div class="ibox float-e-margins">
35
- <div class="ibox-title">
36
- <h5><%= yield(:phc_title_tagline) %></h5>
37
- <div class="ibox-tools">
38
- <a class="collapse-link">
39
- <i class="fa fa-chevron-up"></i>
40
- </a>
41
- <a class="close-link">
42
- <i class="fa fa-times"></i>
43
- </a>
44
- </div>
45
- </div>
46
- <div class="ibox-content">
47
- <%= render 'form', member_profile: @member_profile %>
48
- </div>
49
- </div>
50
-
9
+ <div class="panel panel-inverse">
10
+ <div class="panel-heading">
11
+ <div class="panel-heading-btn">
12
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
13
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
14
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
15
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
51
16
  </div>
17
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
18
+ </div>
19
+ <div class="panel-body">
20
+ <%= render 'form', member_profile: @member_profile %>
52
21
  </div>
53
22
  </div>
54
23
  <!-- Page Content -->
@@ -5,71 +5,42 @@
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
6
  <!-- Title System -->
7
7
 
8
- <!-- Page Header -->
9
- <div class="row wrapper border-bottom white-bg page-heading">
10
- <div class="col-sm-8">
11
- <h2><%= yield(:phc_title) %></h2>
12
- <!-- Bread Crumb -->
13
- <ol class="breadcrumb">
14
- <li><%= yield(:phc_breadcrumb_one) %></li>
15
- <li class="active"><%= yield(:phc_breadcrumb_two) %></li>
16
- </ol>
17
- <!-- Bread Crumb -->
18
- </div>
19
- <div class="col-sm-4">
20
- <div class="title-action">
21
- <%= link_to new_member_profile_path, class: "btn btn-primary" do %>
22
- <i class="fa fa-plus"></i> Create a New Member
23
- <% end %>
8
+ <!-- Page Content -->
9
+ <div class="panel panel-inverse">
10
+ <div class="panel-heading">
11
+ <div class="panel-heading-btn">
12
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
13
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
14
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
15
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
24
16
  </div>
17
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
25
18
  </div>
26
- </div>
27
- <!-- Page Header -->
28
-
29
- <!-- Page Content -->
30
- <div class="wrapper wrapper-content animated fadeInRight">
31
- <div class="row">
32
- <div class="col-lg-12">
33
-
34
- <div class="ibox float-e-margins">
35
- <div class="ibox-title">
36
- <h5><%= yield(:phc_title_tagline) %></h5>
37
- <div class="ibox-tools">
38
- <a class="collapse-link">
39
- <i class="fa fa-chevron-up"></i>
40
- </a>
41
- <a class="close-link">
42
- <i class="fa fa-times"></i>
43
- </a>
44
- </div>
45
- </div>
46
- <div class="ibox-content">
47
- <div class="table-responsive">
48
- <table class="table table-striped table-bordered table-hover">
49
- <thead>
50
- <tr>
51
- <th>First Name</th>
52
- <th>Last Name</th>
53
- <th>Email</th>
54
- <th>Phone</th>
55
- </tr>
56
- </thead>
57
- <tbody>
58
- <% @member_profiles.each do |member_profile| %>
59
- <tr>
60
- <td><%= link_to member_profile.mfirstname, member_profile %></td>
61
- <td><%= link_to member_profile.mlastname, member_profile %></td>
62
- <td><%= link_to member_profile.memail, member_profile %></td>
63
- <td><%= link_to member_profile.mphone, member_profile %></td>
64
- </tr>
65
- <% end %>
66
- </tbody>
67
- </table>
68
- </div>
69
- </div>
70
- </div>
71
-
19
+ <div class="panel-body">
20
+ <!-- Table - Members Profile -->
21
+ <div class="table-responsive">
22
+ <table class="table table-striped table-bordered table-hover">
23
+ <thead>
24
+ <tr>
25
+ <th>First Name</th>
26
+ <th>Last Name</th>
27
+ <th>Email</th>
28
+ <th>Phone</th>
29
+ </tr>
30
+ </thead>
31
+ <tbody>
32
+ <% @member_profiles.each do |member_profile| %>
33
+ <tr>
34
+ <td><%= link_to member_profile.mfirstname, member_profile %></td>
35
+ <td><%= link_to member_profile.mlastname, member_profile %></td>
36
+ <td><%= link_to member_profile.memail, member_profile %></td>
37
+ <td><%= link_to member_profile.mphone, member_profile %></td>
38
+ </tr>
39
+ <% end %>
40
+ </tbody>
41
+ </table>
72
42
  </div>
43
+ <!-- Table - Members Profile -->
73
44
  </div>
74
45
  </div>
75
46
  <!-- Page Content -->
@@ -5,50 +5,19 @@
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
6
  <!-- Title System -->
7
7
 
8
- <!-- Page Header -->
9
- <div class="row wrapper border-bottom white-bg page-heading">
10
- <div class="col-sm-8">
11
- <h2><%= yield(:phc_title) %></h2>
12
- <!-- Bread Crumb -->
13
- <ol class="breadcrumb">
14
- <li><%= yield(:phc_breadcrumb_one) %></li>
15
- <li class="active"><%= yield(:phc_breadcrumb_two) %></li>
16
- </ol>
17
- <!-- Bread Crumb -->
18
- </div>
19
- <div class="col-sm-4">
20
- <div class="title-action">
21
- <%= link_to phcmemberspro.member_profiles_path, class: "btn btn-primary" do %>
22
- <i class="fa fa-id-card-o"></i> Back to Member's Index
23
- <% end %>
24
- </div>
25
- </div>
26
- </div>
27
- <!-- Page Header -->
28
-
29
8
  <!-- Page Content -->
30
- <div class="wrapper wrapper-content animated fadeInRight">
31
- <div class="row">
32
- <div class="col-lg-12">
33
-
34
- <div class="ibox float-e-margins">
35
- <div class="ibox-title">
36
- <h5><%= yield(:phc_title_tagline) %></h5>
37
- <div class="ibox-tools">
38
- <a class="collapse-link">
39
- <i class="fa fa-chevron-up"></i>
40
- </a>
41
- <a class="close-link">
42
- <i class="fa fa-times"></i>
43
- </a>
44
- </div>
45
- </div>
46
- <div class="ibox-content">
47
- <%= render 'form', member_profile: @member_profile %>
48
- </div>
49
- </div>
50
-
9
+ <div class="panel panel-inverse">
10
+ <div class="panel-heading">
11
+ <div class="panel-heading-btn">
12
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
13
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
14
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
15
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
51
16
  </div>
17
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
18
+ </div>
19
+ <div class="panel-body">
20
+ <%= render 'form', member_profile: @member_profile %>
52
21
  </div>
53
22
  </div>
54
23
  <!-- Page Content -->
@@ -1,40 +1,87 @@
1
1
  <!-- Title System -->
2
2
  <% phc_title "Members Manager" %>
3
- <% phc_title_tagline "Create a New Member" %>
3
+ <% phc_title_tagline "Detailed Information" %>
4
4
  <% phc_breadcrumb_one link_to "Dashboard", phcmemberspro.modules_dashboards_index_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
6
  <!-- Title System -->
7
7
 
8
- <!-- Page Header -->
9
- <div class="row wrapper border-bottom white-bg page-heading">
10
- <div class="col-sm-8">
11
- <h2><%= yield(:phc_title) %></h2>
12
- <!-- Bread Crumb -->
13
- <ol class="breadcrumb">
14
- <li><%= yield(:phc_breadcrumb_one) %></li>
15
- <li class="active"><%= yield(:phc_breadcrumb_two) %></li>
16
- </ol>
17
- <!-- Bread Crumb -->
18
- </div>
19
- <div class="col-sm-4">
20
- <div class="title-action">
21
- <%= link_to phcmemberspro.member_profiles_path, class: "btn btn-primary" do %>
22
- <i class="fa fa-id-card-o"></i> Back to Member's Index
23
- <% end %>
8
+ <!-- Member Profiles - Header -->
9
+ <div class="profile">
10
+ <%= render 'phcmemberspro/member/profiles/components/profile_header' %>
11
+ </div>
12
+ <!-- Member Profiles - Header -->
13
+
14
+ <!-- Member Profiles - Remove Full Page Width -->
15
+ <div class="profile-content">
16
+
17
+ <!-- Member Profiles - Content - Addresses Tab -->
18
+ <div class="tab-content p-0">
19
+ <div class="tab-pane fade show active" id="profile-addresses">
20
+ <!-- Member Profiles - Content - Addresses -->
21
+ <div class="panel panel-inverse">
22
+ <div class="panel-heading">
23
+ <div class="panel-heading-btn">
24
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
25
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
26
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
27
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
28
+ </div>
29
+ <h4 class="panel-title"><%= @member_profile.mfirstname + ' ' + @member_profile.mlastname %> Addresses</h4>
30
+ </div>
31
+ <div class="panel-body">
32
+ <%= render 'phcmemberspro/member/profiles/components/profile_addresses_table' %>
33
+ </div>
34
+ </div>
35
+ <!-- Member Profiles - Content - Addresses -->
24
36
  </div>
25
37
  </div>
26
- </div>
27
- <!-- Page Header -->
38
+ <!-- Member Profiles - Content - Addresses Tab -->
28
39
 
29
- <!-- Page Content -->
30
- <div class="wrapper wrapper-content animated fadeInRight">
31
- <div class="row">
32
- <div class="col-lg-3">
33
- <%= render 'phcmemberspro/member/profiles/components/profile_sidebar' %>
40
+ <!-- Member Profiles - Content - Listings Tab -->
41
+ <div class="tab-content p-0">
42
+ <div class="tab-pane fade in" id="profile-listings">
43
+ <!-- Member Profiles - Content - Listings -->
44
+ <div class="panel panel-inverse">
45
+ <div class="panel-heading">
46
+ <div class="panel-heading-btn">
47
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
48
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
49
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
50
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
51
+ </div>
52
+ <h4 class="panel-title"><%= @member_profile.mfirstname + ' ' + @member_profile.mlastname %> Listings</h4>
53
+ </div>
54
+ <div class="panel-body">
55
+ <%= render 'phcmemberspro/member/profiles/components/profile_listings_table' %>
56
+ </div>
57
+ </div>
58
+ <!-- Member Profiles - Content - Listings -->
34
59
  </div>
35
- <div class="col-md-9">
36
- <%= render 'phcmemberspro/member/profiles/components/profile_main' %>
60
+ </div>
61
+ <!-- Member Profiles - Content - Listings Tab -->
62
+
63
+ <!-- Member Profiles - Content - Audit Log Tab -->
64
+ <div class="tab-content p-0">
65
+ <div class="tab-pane fade in" id="profile-logs">
66
+ <!-- Member Profiles - Content - Audit Log -->
67
+ <div class="panel panel-inverse">
68
+ <div class="panel-heading">
69
+ <div class="panel-heading-btn">
70
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
71
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-redo"></i></a>
72
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
73
+ <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
74
+ </div>
75
+ <h4 class="panel-title"><%= @member_profile.mfirstname + ' ' + @member_profile.mlastname %> Change Log</h4>
76
+ </div>
77
+ <div class="panel-body">
78
+ <%= render 'phcmemberspro/member/profiles/components/profile_audits_table' %>
79
+ </div>
80
+ </div>
81
+ <!-- Member Profiles - Content - Audit Log -->
37
82
  </div>
38
83
  </div>
84
+ <!-- Member Profiles - Content - Audit Log Tab -->
85
+
39
86
  </div>
40
- <!-- Page Content -->
87
+ <!-- Member Profiles - Remove Full Page Width -->