Sha256: d653fce125f8cfd63d08db0fa9e93ddd8bbde9a4bdd6c7aeff1ed7305ed72d16

Contents?: true

Size: 1.82 KB

Versions: 26

Compression:

Stored size: 1.82 KB

Contents

<!-- Bread Crumbs -->
<div class="row">
	<div class="col-lg-12">
		<h2>Member's Information</h2>
		<ol class="breadcrumb">
			<li><%= link_to "Home", members_root_path %></li>
			<li><%= link_to "Members List", members_mains_path %></li>
			<li><%= link_to "Members Contact", members_main_contacts_path %></li>
		</ol>
	</div>
</div>

<!-- Main Content -->
<div class="row">
	<div class="col-lg-12">
		<div class="panel panel-primary">
			<div class="panel-heading">
				Member's Contact Index
			</div>
			<div class="panel-body">
				<table class="table table-bordered table-striped table-hover">
					<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><div class="btn-group" role="group" aria-label="Member Adresses Group">
										<%= link_to 'Show', members_main_contact_path(members_contact.main, members_contact), class: "btn btn-primary" %>
										<%= link_to 'Edit', edit_members_main_contact_path(members_contact.main, members_contact), class: "btn btn-primary" %>
										<%= link_to 'Delete', members_main_contact_path(members_contact.main, members_contact), class: "btn btn-danger", method: :delete, data: { confirm: 'Are you sure?' } %>
									</div>
								</td>
							</tr>
						<% end %>
					</tbody>
				</table>
				<%= link_to 'Add a Private Address', new_members_main_contact_path, class: "btn btn-primary" %>
			</div>
		</div>
	</div>
</div>

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phcmemberspro-2.1.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmembers-0.9.8 app/views/phcmembers/members/contacts/index.html.erb
phcmemberspro-1.8.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.7.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.6.5 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.6.3 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.6.1 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.6.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.5.8 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.5.7 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.5.6 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.5.5 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.6 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.5 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.3 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.2 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.1 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-1.0.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmembers-0.9.7 app/views/phcmembers/members/contacts/index.html.erb
phcmembers-0.9.6 app/views/phcmembers/members/contacts/index.html.erb