recruitment/app/views/admin/recruitments/show_member.html.erb

53 lines
1.4 KiB
Plaintext

<table class="table main-list">
<tbody>
<tr>
<th><%= t("recruitment.name") %></th>
<td><%= @user.name %></td>
</tr>
<tr>
<th><%= t("recruitment.company_name") %></th>
<td><%= @profile.company_name %></td>
</tr>
<tr>
<th><%= t("recruitment.office_address") %></th>
<td><%= @profile.office_address %></td>
</tr>
<tr>
<th><%= t("recruitment.company_profile") %></th>
<td><%= @profile.company_profile %></td>
</tr>
<tr>
<th><%= t("recruitment.website") %></th>
<td><a href="<%= @profile.website %>" target="_blank"><%= @profile.website %></a></td>
</tr>
<tr>
<th><%= t("recruitment.country") %></th>
<td><%= MiscList::COUNTRIES[@profile.country] %></td>
</tr>
<tr>
<th><%= t("recruitment.state") %></th>
<td><%= @profile.state %></td>
</tr>
<tr>
<th><%= t("recruitment.zipcode") %></th>
<td><%= @profile.zipcode %></td>
</tr>
<tr>
<th><%= t("recruitment.country_code") %></th>
<td><%= @profile.country_code %></td>
</tr>
<tr>
<th><%= t("recruitment.phone_number") %></th>
<td><%= @profile.phone_number %></td>
</tr>
<tr>
<th><%= t("recruitment.mobile_number") %></th>
<td><%= @profile.mobile_number %></td>
</tr>
<tr>
<th><%= t("recruitment.industry") %></th>
<td><%= @profile.get_industry %></td>
</tr>
</tbody>
</table>
<a href="#" onclick="window.history.back();return false;" class="btn btn-warning">Back</a>