To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / plugins / redmine_bibliography / app / views / publications / _authorship_fields.html.erb @ 1423:40e82f170353
History | View | Annotate | Download (1.04 KB)
| 1 |
<div id="authors" class="fields"> |
|---|---|
| 2 |
<div class="author_edit" id="<%= form_tag_id( f.object_name, :edit_author_info ) %>"> |
| 3 |
|
| 4 |
<p><%= f.label :name_on_paper %><%= f.text_field :name_on_paper, :class => "author_name_on_paper" -%></p> |
| 5 |
<p><%= f.label :institution %><%= f.text_field :institution -%></p> |
| 6 |
<p><%= f.label :email %><%= f.text_field :email -%></p> |
| 7 |
|
| 8 |
<p class="author_associated search_author_tie"> |
| 9 |
<%= f.check_box :search_author_tie, :label => '' -%>
|
| 10 |
<span>Not associated with any SoundSoftware site user.</span> |
| 11 |
</p>
|
| 12 |
|
| 13 |
<%= f.hidden_field :search_author_class -%>
|
| 14 |
<%= f.hidden_field :search_author_id -%>
|
| 15 |
</div>
|
| 16 |
|
| 17 |
<div>
|
| 18 |
<p>
|
| 19 |
<%= button_to_function l(:label_save_author), '', :id => form_tag_id(f.object_name, :edit_save_button), :class => 'author_save_btn' -%>
|
| 20 |
|
| 21 |
<%= button_to_function l(:label_edit_author), '', :id => form_tag_id(f.object_name, :edit_button), :class => 'author_edit_btn', :style => "display:none;" -%>
|
| 22 |
|
| 23 |
<%= link_to_remove_fields l("remove_author"), f %>
|
| 24 |
</p>
|
| 25 |
</div>
|
| 26 |
</div>
|