Skip to content

Commit 4cb5f48

Browse files
committed
Update prenotify.html.erb
1 parent b22ad95 commit 4cb5f48

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

app/views/registers/prenotify.html.erb

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,18 @@
2929
<tr>
3030
<td><%= display_link(genome.typified_names.first) %></td>
3131
<td><%= genome.accession %></td>
32-
<td></td>
33-
<td></td>
32+
<td><%= select_tag(
33+
"genome[#{genome.id}][database]",
34+
options_for_select(Genome.db_names.to_a, 'pending'),
35+
class: 'form-control'
36+
) %></td>
37+
<td><%= text_field_tag(
38+
"genome[#{genome.id}][accession]", nil, class: 'form-control'
39+
) %></td>
3440
</tr>
3541
<% end %>
3642
</tbody>
3743
</table>
38-
<%=
39-
f.input(
40-
:publication_pdf, label: 'Publication PDF', required: true,
41-
hint: 'Published manuscript in PDF: the preferred PDF is the final ' \
42-
'typeset version, but the author accepted manuscript version ' \
43-
'is also acceptable'
44-
)
45-
%>
4644

4745
<br/>
4846
<%= f.button(:submit, 'Submit list for validation') %>

0 commit comments

Comments
 (0)