Files
sx-fc/app/views/settings/membership_actions/show.html.erb
2017-10-16 18:27:57 +06:30

58 lines
1.6 KiB
Plaintext

<div class="page-header">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<%= dashboard_path %>">Home</a></li>
<li class="breadcrumb-item"><a href="<%= settings_membership_actions_path %>">Membership Actions</a></li>
<li class="breadcrumb-item active">Details</li>
<span class="float-right">
<%= link_to t('.back', :default => t("views.btn.back")), settings_membership_actions_path %>
</span>
</ol>
</div>
<div class="card">
<div class="card-block">
<table class="table">
<tbody>
<tr>
<th>Membership type</th>
<td><%= @settings_membership_action.membership_type %></td>
</tr>
<tr>
<th>Is active</th>
<td><%= @settings_membership_action.is_active %></td>
</tr>
<tr>
<th>Gateway communication type</th>
<td><%= @settings_membership_action.gateway_communication_type %></td>
</tr>
<tr>
<th>Gateway url</th>
<td><%= @settings_membership_action.gateway_url %></td>
</tr>
<tr>
<th>Auth token</th>
<td><%= @settings_membership_action.auth_token %></td>
</tr>
<tr>
<th>Merchant account</th>
<td><%= @settings_membership_action.merchant_account_id %></td>
</tr>
<tr>
<th>Created by</th>
<td><%= @settings_membership_action.created_by %></td>
</tr>
<tr>
<th>Additional parameter</th>
<td><%= @settings_membership_action.additional_parameter %></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>