Sha256: 570a011f6028a7e2df252b5538d64db13342c3b873f52e967e802e224d3ce7ab
Contents?: true
Size: 1.73 KB
Versions: 10
Compression:
Stored size: 1.73 KB
Contents
<!-- Title Variables --> <% phc_title "PHCMembers - Member Profile Manager" %> <% phc_title_tagline "Members Main Index" %> <!-- Page Header --> <div class="row"> <div class="col-lg-12"> <!-- Bread Crumbs --> <ol class="breadcrumb"> <li><%= link_to "Dashboard", member_root_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-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> <div class="caption"> <span class="caption-subject bold uppercase">Main Members List</span> </div> </div> <div class="panel-body"> <div class="table-scrollable"> <table class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th>First Name</th> <th>Last Name</th> <th>Email</th> <th>Phone</th> </tr> </thead> <tbody> <% @member_profiles.each do |member_profile| %> <tr> <td class="highlight"><%= link_to member_profile.mfirstname, member_profile %></td> <td class="highlight"><%= link_to member_profile.mlastname, member_profile %></td> <td class="highlight"><%= link_to member_profile.memail, member_profile %></td> <td class="highlight"><%= link_to member_profile.mphone, member_profile %></td> </tr> <% end %> </tbody> </table> </div> </div> </div> <%= link_to new_member_profile_path, class: "btn btn-primary" do %> <i class="fa fa-plus"></i> Create a New Member <% end %> </div> </div>
Version data entries
10 entries across 10 versions & 1 rubygems