app/views/phcmembers/member/profiles/show.html.erb in phcmembers-6.5.1 vs app/views/phcmembers/member/profiles/show.html.erb in phcmembers-6.7.0
- old
+ new
@@ -1,35 +1,31 @@
-<!-- Title Variables -->
-<% phc_title "Member Profile Manager" %>
-<% phc_title_tagline "Detailed Profile for " + @member_profile.mfirstname + " " + @member_profile.mlastname %>
+<!-- Title System -->
+<% phc_title "Members Manager" %>
+<% phc_title_tagline "Create a New Member" %>
+<% phc_breadcrumb_one link_to "Dashboard", phcmemberspro.modules_dashboards_index_path %>
+<% phc_breadcrumb_two yield(:phc_title_tagline) %>
+<!-- Title System -->
-<!-- Page Header -->
-<div class="row">
- <div class="col-lg-12">
+<!-- Page Title Bar -->
+<section class="content-header">
+ <!-- Page Title and BreadCrumb -->
+ <h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
+ <ol class="breadcrumb">
+ <li><%= yield(:phc_breadcrumb_one) %></li>
+ <li class="active"><%= yield(:phc_breadcrumb_two) %></li>
+ </ol>
+ <!-- Page Title and BreadCrumb -->
+</section>
+<!-- Page Title Bar -->
- <!-- Bread Crumbs -->
- <ol class="breadcrumb">
- <li><%= link_to "Dashboard", member_root_path %></li>
- <li><%= link_to "Member Profile List", member_profiles_path %></li>
- <li class="active"><%= yield(:phc_title_tagline) %></li>
- </ol>
-
- <!-- Page Title -->
- <h3 class="page-title">
- <%= yield(:phc_title) %> </br>
- <small><%= yield(:phc_title_tagline) %></small>
- </h3>
-
- </div>
-</div>
-
<!-- Main Content -->
-<div class="row">
-
- <div class="col-md-3">
- <%= render 'phcmembers/member/profiles/components/profile_sidebar' %>
+<section class="content">
+ <div class="row">
+ <div class="col-md-3">
+ <%= render 'phcmembers/member/profiles/components/profile_sidebar' %>
+ </div>
+ <div class="col-md-9">
+ <%= render 'phcmembers/member/profiles/components/profile_main' %>
+ </div>
</div>
- <div class="col-md-9">
- <%= render 'phcmembers/member/profiles/components/profile_main' %>
- </div>
-
-</div>
+</section>
+<!-- Main Content -->
\ No newline at end of file