| 1 |
|
<%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
|
| 2 |
|
|
|
1 |
<% content_for :header_tags do %>
|
|
2 |
<%= stylesheet_link_tag 'bibliography', :plugin => 'redmine_bibliography' %>
|
|
3 |
<% end %>
|
| 3 |
4 |
|
| 4 |
5 |
<div id="authors" class="fields">
|
| 5 |
|
<!-- <h4><%= l("label_author_1") %></h4> -->
|
|
6 |
<div id="<%= form_tag_id( f.object_name, :search_author ) %>" style=<%= "display:none;" unless params[:action] == "new" %> >
|
|
7 |
<p>
|
|
8 |
<%= f.text_field :search_name, :size => 25, :class => "author_search" %>
|
|
9 |
</p>
|
| 6 |
10 |
|
| 7 |
|
<div id="<%= form_tag_id( f.object_name, :search_author ) %>" style=<%= "display:none;" unless params[:action] == "new" %> >
|
| 8 |
|
<p>
|
| 9 |
|
<%= f.text_field :search_name, :size => 25 %>
|
| 10 |
|
<p>
|
| 11 |
|
<%= f.select :search_results, options_for_select(@author_options) %>
|
| 12 |
|
</p>
|
|
11 |
<p style="margin-bottom: -2.5em; padding-bottom; 0"><label><%= l(:identify_author_question) %></label></p>
|
|
12 |
<p class="author_identify">
|
|
13 |
<label class='inline'><%= radio_button_tag(:identify_author, "yes", false, :name => form_tag_name(f.object_name,:identify_author ), :id => form_tag_id( f.object_name, :identify_author_yes ), :onchange => "identify_author_status($(this).value, #{form_object_id(f.object_name) });") %> <%= l(:identify_author_yes) %> </label><br />
|
| 13 |
14 |
|
| 14 |
|
<p style="margin-bottom: -2.5em; padding-bottom; 0"><label><%= l(:identify_author_question) %></label></p>
|
| 15 |
|
<p class="author_identify">
|
| 16 |
|
<label class='inline'><%= radio_button_tag(:identify_author, "yes", false, :name => form_tag_name(f.object_name,:identify_author ), :id => form_tag_id( f.object_name, :identify_author_yes ), :onchange => "identify_author_status($(this).value, #{form_object_id(f.object_name) });") %> <%= l(:identify_author_yes) %> </label><br />
|
| 17 |
|
|
| 18 |
|
<label class='inline'><%= radio_button_tag(:identify_author, "correct", false, :name => form_tag_name(f.object_name,:identify_author ), :id => form_tag_id( f.object_name, :identify_author_corrections ), :onchange => "identify_author_status($(this).value, #{form_object_id(f.object_name) });") %> <%= l(:identify_author_correct) %> </label><br />
|
|
15 |
<label class='inline'><%= radio_button_tag(:identify_author, "correct", false, :name => form_tag_name(f.object_name,:identify_author ), :id => form_tag_id( f.object_name, :identify_author_corrections ), :onchange => "identify_author_status($(this).value, #{form_object_id(f.object_name) });") %> <%= l(:identify_author_correct) %> </label><br />
|
| 19 |
16 |
|
| 20 |
17 |
<label class='inline'><%= radio_button_tag(:identify_author, "no", true, :name => form_tag_name(f.object_name,:identify_author ), :id => form_tag_id( f.object_name, :identify_author_no ), :onchange => "identify_author_status($(this).value, #{form_object_id(f.object_name) });") %> <%= l(:identify_author_no) %> </label><br />
|
| 21 |
18 |
</p>
|