Update merge.html.erb

This commit is contained in:
chiu 2019-11-01 14:42:24 +08:00
parent 9bdc47e315
commit 6d2f4ba534
1 changed files with 4 additions and 5 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('module_name.personal_journal') %></th> <th><%= t("personal_journal.authors") %></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -36,7 +36,7 @@
<% if params['mode']=='simple' %> <% if params['mode']=='simple' %>
<% journals.each_with_index do |journal,i| %> <% journals.each_with_index do |journal,i| %>
<td> <td>
<%= journal %> <%= get_member(journal) %>
</td> </td>
<% if len!=(i+1) %> <% if len!=(i+1) %>
</tr> </tr>
@ -54,7 +54,7 @@
<% end %> <% end %>
<% v.each_with_index do |journal_child,index1| %> <% v.each_with_index do |journal_child,index1| %>
<td> <td>
<%= journal_child %> <%= get_member(journal_child) %>
</td> </td>
<% if len1!=index1 %> <% if len1!=index1 %>
</tr> </tr>
@ -71,5 +71,4 @@
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
<%= debug self.methods() %>