view update
This commit is contained in:
parent
363ccdde4d
commit
d413f705a4
|
@ -304,7 +304,9 @@ a:focus { outline: none; }
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
.toolbar .fn_btn {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
/* Setting Page */
|
/* Setting Page */
|
||||||
.theme_list {}
|
.theme_list {}
|
||||||
|
|
|
@ -1,28 +1,26 @@
|
||||||
<h1>list all coauthor</h1>
|
<div class="toolbar hh2">
|
||||||
<%= link_to "New Co-Author", new_desktop_co_author_path, :class=>"bt-co-author" %>
|
<div class="fn_g hp">
|
||||||
<%= link_to "New Type", desktop_co_author_relations_path, :class=>"bt-new-type" %>
|
<%= link_to "New Co-Author", new_desktop_co_author_path, :class=>"bt-co-author fn_btn hp hh2 thmc2 thmtxt" %>
|
||||||
<table>
|
<%= link_to "New Type", desktop_co_author_relations_path, :class=>"bt-new-type fn_btn hp hh2 thmc2 thmtxt" %>
|
||||||
<thead>
|
</div>
|
||||||
<tr>
|
</div>
|
||||||
<th>Name</th>
|
<% @co_authors.each_with_index do |co_author,i| %>
|
||||||
<th>EMail</th>
|
<% if ( i % 5 ) == 0 %>
|
||||||
<th>Type</th>
|
<div class="g_col">
|
||||||
<th></th>
|
<ul>
|
||||||
<th></th>
|
<% end %>
|
||||||
<th></th>
|
<li class="list_t_item">
|
||||||
</tr>
|
<div class="list_item_action">
|
||||||
</thead>
|
<%= link_to 'Edit', edit_desktop_co_author_path(co_author), :class => "bt-edit" %>
|
||||||
<tbody>
|
<%= link_to 'Destroy', desktop_co_author_path(co_author), method: :delete, confirm: 'Are you sure?', :class=>"bt-delete" %>
|
||||||
<% @co_authors.each do |co_author| %>
|
</div>
|
||||||
<tr>
|
<%= co_author.co_author %>
|
||||||
<td><%= co_author.co_author %></td>
|
<%= co_author.email %>
|
||||||
<td><%= co_author.email %></td>
|
<%= @co_author_relations.find(co_author.co_author_relations_id).relation \
|
||||||
<td><%= @co_author_relations.find(co_author.co_author_relations_id).relation \
|
unless co_author.co_author_relations_id.nil?%>
|
||||||
unless co_author.co_author_relations_id.nil?%></td>
|
</li>
|
||||||
<td><%= link_to 'Edit', edit_desktop_co_author_path(co_author), :class => "bt-edit" %></td>
|
<% if ( i % 5 ) == 4 %>
|
||||||
<td><%= link_to 'Destroy', desktop_co_author_path(co_author), method: :delete, confirm: 'Are you sure?', :class=>"bt-delete" %></td>
|
</ul>
|
||||||
</tr>
|
</div>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<br />
|
|
||||||
|
|
Reference in New Issue