mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 02:35:57 +02:00
Reformat
This commit is contained in:
parent
cb3d298bb3
commit
64ea8d328a
1 changed files with 13 additions and 19 deletions
|
@ -1,30 +1,24 @@
|
|||
<div class="panel-default panel">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<%= t(:statuses) %>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive">
|
||||
<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>
|
||||
<th class="col-xs-6"><%= t(:status) %></th>
|
||||
<th class="col-xs-6"><%= t(:notes) %></th>
|
||||
</tr>
|
||||
<% end %>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<% contact.statuses.each do |status| %>
|
||||
<tr>
|
||||
<td><%= status %></td>
|
||||
<td><%= contact.status_notes[status] %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue