comparison .svn/pristine/da/dade97d2f6b0fa5fb73e9c17001539def9496f0c.svn-base @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents
children
comparison
equal deleted inserted replaced
1516:b450a9d58aed 1517:dffacf8a6908
1 <%= title [l(:label_custom_field_plural), custom_fields_path],
2 l(:label_custom_field_new) %>
3
4 <% selected = 0 %>
5 <%= form_tag new_custom_field_path, :method => 'get' do %>
6 <div class="box">
7 <p><%= l(:label_custom_field_select_type) %>:</p>
8 <p>
9 <% custom_field_type_options.each do |name, type| %>
10 <label style="display:block;"><%= radio_button_tag 'type', type, 1==selected+=1 %> <%= name %></label>
11 <% end %>
12 </p>
13 </div>
14 <p><%= submit_tag l(:label_next).html_safe + " &#187;".html_safe, :name => nil %></p>
15 <% end %>