app/views/phcmemberspro/members/mains/index.html.erb in phcmemberspro-4.8.8 vs app/views/phcmemberspro/members/mains/index.html.erb in phcmemberspro-4.8.9
- old
+ new
@@ -1,34 +1,25 @@
<!-- Title System -->
<% phc_title "PHCMembers - Members Manager" %>
<% phc_title_tagline "Members Main Index" %>
-<!-- Bread Crumb -->
<div class="page-bar">
+
+ <!-- Bread Crumb -->
<ul class="page-breadcrumb">
<li><%= link_to "Home", members_root_path %><i class="fa fa-circle"></i></li>
<li class="active"><%= link_to "Members List", members_mains_path %></li>
</ul>
+
</div>
<!-- Page Title -->
<h3 class="page-title">
- <%= yield(:phc_title) %>
+ <%= yield(:phc_title) %> </br>
<small><%= yield(:phc_title_tagline) %></small>
</h3>
-<!-- Action Button -->
-<div class="page-toolbar">
- <div class="btn-group pull-right">
- <button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown"> Member Actions
- <i class="fa fa-angle-down"></i>
- </button>
- <ul class="dropdown-menu pull-right" role="menu">
- </ul>
- </div>
-</div>
-
<!-- Main Content -->
<div class="row">
<div class="col-lg-12">
<div class="portlet box blue-chambray bordered">
<div class="portlet-title">
@@ -43,32 +34,20 @@
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Phone</th>
- <th colspan="2"></th>
+ <th></th>
</tr>
</thead>
<tbody>
<% @members_mains.each do |members_main| %>
<tr>
<td><%= members_main.mfirstname %></td>
<td><%= members_main.mlastname %></td>
<td><%= members_main.memail %></td>
<td><%= members_main.mphone %></td>
- <td>
- <div class="btn-group btn-group-xs btn-group-solid" role="group" aria-label="Member Main Group">
- <%= link_to 'Profile', members_main, class: "btn blue-hoki" %>
- <%= link_to 'Edit', edit_members_main_path(members_main), class: "btn blue-hoki" %>
- <%= link_to 'Delete', members_main, method: :delete, data: { confirm: 'Are you sure? Removing a member will delete all records including all listing information from the directory.' }, class: "btn red-mint" %>
- </div>
- </td>
- <td>
- <div class="btn-group" role="group" aria-label="Member Main Listings Address Group">
- <%= link_to 'Private Address', members_main_contacts_path(members_main), class: "btn yellow-mint" %>
- <%= link_to 'Public Listings', members_main_listings_path(members_main), class: "btn blue-hoki" %>
- </div>
- </td>
+ <td><%= link_to 'Open Member Profile', members_main, class: "btn blue-hoki" %></td>
</tr>
<% end %>
</tbody>
</table>
</div>