Nuevo plugin Redmine Glossary 0.9.2

This commit is contained in:
Manuel Cillero 2019-01-29 19:42:59 +01:00
parent 5d298a7529
commit 693eb3ee50
72 changed files with 2962 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<h2><%= l(:label_move_all_terms) %></h2>
<% if params[:new_project_id] %>
<% elsif @allowed_projs.blank? %>
<div class="nodata">
<%= simple_format(l(:error_no_movement_project)) %>
</div>
<% else %>
<% form = form_tag({:project_id => @project}, :id => 'move_all_form') do %>
<div class="box tabular">
<p><label for="new_project_id"><%=l(:label_movement_project)%>:</label>
<%= select_tag "new_project_id",
project_tree_options_for_select(@allowed_projs) %>
</p>
</div>
<%= submit_tag l(:button_move) %>
<% end %>
<%= form if Rails::VERSION::MAJOR >= 3 %>
<% end %>