Update merge.html.erb

This commit is contained in:
chiu 2019-11-01 14:47:53 +08:00
parent 6d2f4ba534
commit 9ec51c6b56
1 changed files with 7 additions and 3 deletions

View File

@ -15,7 +15,7 @@
<th><%= t('personal_journal.paper_type') %></th>
<th><%= t('personal_journal.publication_date') %></th>
<% end %>
<th><%= t("personal_journal.authors") %></th>
<th><%= t("personal_plugins.author") %></th>
</tr>
</thead>
<tbody>
@ -36,7 +36,9 @@
<% if params['mode']=='simple' %>
<% journals.each_with_index do |journal,i| %>
<td>
<%= get_member(journal) %>
<% get_member(journal).each do |member| %>
<%= member.name rescue t('personal_journal.no_input') %>
<% end %>
</td>
<% if len!=(i+1) %>
</tr>
@ -54,7 +56,9 @@
<% end %>
<% v.each_with_index do |journal_child,index1| %>
<td>
<%= get_member(journal_child) %>
<% get_member(journal).each do |member| %>
<%= member.name rescue t('personal_journal.no_input') %>
<% end %>
</td>
<% if len1!=index1 %>
</tr>