view .svn/pristine/6a/6a0944d7e583de44e8a1af8231e3395612ce51a0.svn-base @ 1080:5bd8c86cfa6a issue_540

Makes the Publication model act as an activity; overloading the default ActivitiesController#index view in the Bibliography Plugin in order to differentiate Publications from the other event types. * Known issues: ** route to /activities is not working (only to /activity); ** publication cache needs to be implemented in the model, not in the helper; ** when a publication is added to n projects, n events are created (all with the same content).
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 22 Nov 2012 16:51:23 +0000
parents cbb26bc654de
children
line wrap: on
line source
<%= render :partial => 'action_menu' %>

<h2><%=l(:label_workflow)%></h2>

<% form_tag({}, :id => 'workflow_copy_form') do %>
<fieldset class="tabular box">
<legend><%= l(:label_copy_source) %></legend>
<p>
  <label><%= l(:label_tracker) %></label>
  <%= select_tag('source_tracker_id',
                  "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
                  "<option value=\"any\">--- #{ l(:label_copy_same_as_target) } ---</option>" +
                  options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>
</p>
<p>
  <label><%= l(:label_role) %></label>
  <%= select_tag('source_role_id',
                  "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
                  "<option value=\"any\">--- #{ l(:label_copy_same_as_target) } ---</option>" +
                  options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>
</p>
</fieldset>

<fieldset class="tabular box">
<legend><%= l(:label_copy_target) %></legend>
<p>
  <label><%= l(:label_tracker) %></label>
  <%= select_tag 'target_tracker_ids',
                  "<option value=\"\" disabled=\"disabled\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
                  options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %>
</p>
<p>
  <label><%= l(:label_role) %></label>
  <%= select_tag 'target_role_ids',
                  "<option value=\"\" disabled=\"disabled\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
                  options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>
</p>
</fieldset>
<%= submit_tag l(:button_copy) %>
<% end %>