34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
<div class="row content">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<strong>User List</strong>
|
|
</div>
|
|
<div class="card-block">
|
|
<table class="table" style="border-top:none">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Nrc</th>
|
|
<th>Email</th>
|
|
<th>Phone</th>
|
|
<th>Address</th>
|
|
<th>Status</th>
|
|
<th>Created At </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @users.each do |user| %>
|
|
<tr>
|
|
<td><%= user.name rescue '' %></td>
|
|
<td><%= user.nrc rescue '' %></td>
|
|
<td><%= user.email rescue '' %></td>
|
|
<td><%= user.phone rescue '' %></td>
|
|
<td><%= user.address rescue '' %></td>
|
|
<td><%= user.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div> |