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