1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-25 09:51:14 +00:00
redmine/app/views/versions/_new_modal.html.erb
Go MAEDA 05289f6002 Replace cancel button with cancel link in modals (#28662).
Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@17677 e93f8b46-1217-0410-a6f0-8f06a7374b81
2018-12-02 06:24:21 +00:00

10 lines
375 B
Plaintext

<h3 class="title"><%=l(:label_version_new)%></h3>
<%= labelled_form_for @version, :url => project_versions_path(@project), :remote => true do |f| %>
<%= render :partial => 'versions/form', :locals => { :f => f } %>
<p class="buttons">
<%= submit_tag l(:button_create), :name => nil %>
<%= link_to_function l(:button_cancel), "hideModal(this);" %>
</p>
<% end %>