Sha256: c47637f1225041d2490a6c02e0930f3c51f67250ef7fc445fd78bdea18e572ce
Contents?: true
Size: 1.73 KB
Versions: 3
Compression:
Stored size: 1.73 KB
Contents
<!-- Title System --> <% phc_title "Members Manager" %> <% phc_title_tagline "Members List" %> <!-- Page Header --> <div class="page-bar"> <!-- Bread Crumb --> <ul class="page-breadcrumb"> <li><%= link_to "Dashboard", root_path %><i class="fa fa-circle"></i></li> <li class="active"><%= yield(:phc_title_tagline) %></li> </ul> <div class="page-toolbar"> </div> </div> <h1 class="page-title"> <%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small> </h1> <!-- Page 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">Main Members List</span> </div> <div class="actions"> <%= link_to new_member_profile_path, class: "btn blue-chambray" do %> <i class="fa fa-plus"></i> Create a New Member <% end %> </div> </div> <div class="portlet-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> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems