mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 10:45:58 +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">
|
<div class="panel-heading">
|
||||||
<%= t(:statuses) %>
|
<%= t(:statuses) %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-hover table-bordered table-condensed">
|
<table class="table table-hover table-bordered table-condensed">
|
||||||
<thead>
|
<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>
|
<tr>
|
||||||
<td>
|
<th class="col-xs-6"><%= t(:status) %></th>
|
||||||
<%= status %>
|
<th class="col-xs-6"><%= t(:notes) %></th>
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<%= contact.status_notes[status] %>
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
<% contact.statuses.each do |status| %>
|
||||||
|
<tr>
|
||||||
|
<td><%= status %></td>
|
||||||
|
<td><%= contact.status_notes[status] %></td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue