Sha256: 944799fcf86768168f37dce236a107afaae1b16318d705915d173135fd80661a
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
<!-- Title System --> <% phc_title "PHCMembers - Member Addresses" %> <% phc_title_tagline "Address Index for " + @members_main.mfirstname + " " + @members_main.mlastname %> <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><%= link_to "Members List", members_mains_path %><i class="fa fa-circle"></i></li> <li class="active"><%= @members_main.mfirstname + ' ' + @members_main.mlastname %> Address Index</li> </ul> </div> <!-- Page Title --> <h3 class="page-title"> <%= yield(:phc_title) %> </br> <small><%= yield(:phc_title_tagline) %></small> </h3> <!-- Main Content --> <div class="row"> <div class="col-lg-12"> <div class="portlet box blue-chambray bordered"> <div class="portlet-title"> <div class="caption"> <span class="caption-subject bold uppercase"><%= @members_main.mfirstname + ' ' + @members_main.mlastname %> Address Index</span> </div> </div> <div class="portlet-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-header-fixed"> <thead> <tr> <th>Full Name</th> <th>Company Name</th> <th>City</th> <th>Province</th> <th>Country</th> <th></th> </tr> </thead> <tbody> <% @members_contact.each do |members_contact| %> <tr> <td><%= members_contact.mccontactname %></td> <td><%= members_contact.mccompanyname %></td> <td><%= members_contact.mccity %></td> <td><%= members_contact.mcprovince %></td> <td><%= members_contact.mccountry %></td> <td></td> </tr> <% end %> </tbody> </table> </div> <%= link_to 'Add a Private Address', new_members_main_contact_path, class: "btn blue-hoki" %> </div> </div> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcmemberspro-4.8.9 | app/views/phcmemberspro/members/contacts/index.html.erb |