mirror of
https://github.com/internetee/registry.git
synced 2025-07-31 15:06:23 +02:00
23 lines
640 B
Text
23 lines
640 B
Text
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<%= t '.header' %>
|
|
</div>
|
|
|
|
<table class="table table-hover table-bordered table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-xs-6"><%= t(:status) %></th>
|
|
<th class="col-xs-6"><%= t(:notes) %></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% contact.statuses.each do |status| %>
|
|
<tr>
|
|
<td><%= status %></td>
|
|
<td><%= contact.status_notes[status] %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|