deprecated start_form_tag replaced by form_tag
git-svn-id: http://redmine.rubyforge.org/svn/trunk@184 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7c27fb7c1d
commit
845460b165
|
@ -2,7 +2,7 @@
|
|||
<div class="box login">
|
||||
<h2 class="icon22 icon22-authent"><%=l(:label_please_login)%></h2>
|
||||
|
||||
<%= start_form_tag({:action=> "login"}, :class => "tabular") %>
|
||||
<% form_tag ({:action=> "login"}, :class => "tabular") do %>
|
||||
<p><label for="login"><%=l(:field_login)%>:</label>
|
||||
<%= text_field_tag 'login', nil, :size => 25 %></p>
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
|||
<%= password_field_tag 'password', nil, :size => 25 %></p>
|
||||
|
||||
<p><center><input type="submit" name="login" value="<%=l(:button_login)%> »" class="primary" /></center>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
<br><% if Setting.self_registration? %><%= link_to l(:label_register), :action => 'register' %> |<% end %>
|
||||
<%= link_to l(:label_password_lost), :action => 'lost_password' %></p>
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
<div class="box login">
|
||||
<h2><%=l(:label_password_lost)%></h2>
|
||||
|
||||
<%= start_form_tag({:action=> "lost_password"}, :class => "tabular") %>
|
||||
<% form_tag({:action=> "lost_password"}, :class => "tabular") do %>
|
||||
|
||||
<p><label for="mail"><%=l(:field_mail)%> <span class="required">*</span></label>
|
||||
<%= text_field_tag 'mail', nil, :size => 40 %></p>
|
||||
|
||||
<p><center><%= submit_tag l(:button_submit) %></center></p>
|
||||
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
</center>
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<%= error_messages_for 'user' %>
|
||||
|
||||
<%= start_form_tag({:token => @token.value}, :class => "tabular") %>
|
||||
<% form_tag({:token => @token.value}, :class => "tabular") do %>
|
||||
|
||||
<p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
|
||||
<%= password_field_tag 'new_password', nil, :size => 25 %></p>
|
||||
|
@ -15,7 +15,7 @@
|
|||
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
|
||||
|
||||
<p><center><%= submit_tag l(:button_save) %></center></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
</div>
|
||||
</center>
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_register)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'register'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'register'}, :class => "tabular") do %>
|
||||
<%= error_messages_for 'user' %>
|
||||
|
||||
<div class="box">
|
||||
|
@ -36,7 +36,7 @@
|
|||
</div>
|
||||
|
||||
<%= submit_tag l(:button_submit) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
<% content_for :header_tags do %>
|
||||
<%= javascript_include_tag 'calendar/calendar' %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:field_mail_notification)%></h2>
|
||||
|
||||
<%= start_form_tag ({}, :id => 'mail_options_form')%>
|
||||
<% form_tag ({:action => 'mail_options'}, :id => 'mail_options_form') do %>
|
||||
|
||||
<div class="box">
|
||||
<p><%=l(:text_select_mail_notifications)%></p>
|
||||
|
@ -21,4 +21,4 @@
|
|||
</div>
|
||||
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<h2><%=l(:label_auth_source)%> (<%= @auth_source.auth_method_name %>)</h2>
|
||||
|
||||
<%= start_form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_auth_source_new)%> (<%= @auth_source.auth_method_name %>)</h2>
|
||||
|
||||
<%= start_form_tag({:action => 'create'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'create'}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<h2><%=l(:label_document)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'edit', :id => @document}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'edit', :id => @document}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
|
||||
|
||||
<% if authorize_for('documents', 'add_attachment') %>
|
||||
<%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :class => "tabular") %>
|
||||
<% form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :class => "tabular") do %>
|
||||
<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
|
||||
<%= image_to_function "add.png", "addFileField();return false" %></label>
|
||||
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<h2><%=l(:label_enumerations)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'update', :id => @enumeration}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'update', :id => @enumeration}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
<%= start_form_tag :action => 'destroy', :id => @enumeration %>
|
||||
<% form_tag({:action => 'destroy', :id => @enumeration}) do %>
|
||||
<%= submit_tag l(:button_delete) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%= l(@enumeration.option_name) %>: <%=l(:label_enumeration_new)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'create'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'create'}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_issue_category)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'edit', :id => @category}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'edit', :id => @category}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_issue_status)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'update', :id => @issue_status}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'update', :id => @issue_status}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_issue_status_new)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'create'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'create'}, :class => "tabular") do %>
|
||||
<%= render :partial => 'form' %>
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<% if authorize_for('projects', 'add_issue') %>
|
||||
<%= start_form_tag({ :controller => 'projects', :action => 'add_issue', :id => @project }, :method => 'get') %>
|
||||
<% form_tag({ :controller => 'projects', :action => 'add_issue', :id => @project }, :method => 'get') do %>
|
||||
<%= l(:label_issue_new) %>: <%= select_tag 'tracker_id', ("<option></option>" + options_from_collection_for_select(trackers, 'id', 'name')), :onchange => "if (this.value!='') {this.form.submit();}" %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2>
|
||||
|
||||
<%= error_messages_for 'issue' %>
|
||||
<%= start_form_tag({:action => 'change_status', :id => @issue}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'change_status', :id => @issue}, :class => "tabular") do %>
|
||||
|
||||
<%= hidden_field_tag 'confirm', 1 %>
|
||||
<%= hidden_field_tag 'new_status_id', @new_status.id %>
|
||||
|
@ -34,4 +34,4 @@
|
|||
|
||||
<%= hidden_field 'issue', 'lock_version' %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -56,13 +56,13 @@ end %>
|
|||
</div>
|
||||
|
||||
<% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
|
||||
<%= start_form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) %>
|
||||
<% form_tag ({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
|
||||
<%=l(:label_change_status)%> :
|
||||
<select name="new_status_id">
|
||||
<%= options_from_collection_for_select @status_options, "id", "name" %>
|
||||
</select>
|
||||
<%= submit_tag l(:button_change) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
</div>
|
||||
|
@ -90,22 +90,22 @@ end %>
|
|||
</table>
|
||||
<br />
|
||||
<% if authorize_for('issues', 'add_attachment') %>
|
||||
<%= start_form_tag ({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") %>
|
||||
<% form_tag ({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") do %>
|
||||
<p id="attachments_p"><label><%=l(:label_attachment_new)%>
|
||||
<%= image_to_function "add.png", "addFileField();return false" %></label>
|
||||
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<% if authorize_for('issues', 'add_note') %>
|
||||
<div class="box">
|
||||
<h3><%= l(:label_add_note) %></h3>
|
||||
<%= start_form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) %>
|
||||
<% form_tag ({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
|
||||
<p><label for="notes"><%=l(:field_notes)%></label>
|
||||
<%= text_area_tag 'notes', '', :cols => 60, :rows => 10 %></p>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<div class="box">
|
||||
<h3><%=l(:field_password)%></h3>
|
||||
|
||||
<%= start_form_tag({:action => 'change_password'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'change_password'}, :class => "tabular") do %>
|
||||
|
||||
<p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
|
||||
<%= password_field_tag 'password', nil, :size => 25 %></p>
|
||||
|
@ -41,6 +41,6 @@
|
|||
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
|
||||
|
||||
<center><%= submit_tag l(:button_save) %></center>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
|
|
@ -36,7 +36,7 @@ function removeBlock(block) {
|
|||
|
||||
<div class="contextual">
|
||||
<span id="indicator" style="display:none"><%= image_tag "loading.gif", :align => "absmiddle" %></span>
|
||||
<%= start_form_tag({:action => "add_block"}, :id => "block-form") %>
|
||||
<% form_tag({:action => "add_block"}, :id => "block-form") do %>
|
||||
<%= select_tag 'block', "<option></option>" + options_for_select(@block_options), :id => "block-select" %>
|
||||
<%= link_to_remote l(:button_add),
|
||||
:url => { :action => "add_block" },
|
||||
|
@ -47,7 +47,7 @@ function removeBlock(block) {
|
|||
:loading => "Element.show('indicator')",
|
||||
:loaded => "Element.hide('indicator')"
|
||||
%>
|
||||
<%= end_form_tag %> |
|
||||
<% end %> |
|
||||
<%= link_to l(:button_save), :action => 'page_layout_save' %> |
|
||||
<%= link_to l(:button_cancel), :action => 'page' %>
|
||||
</div>
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
</div>
|
||||
|
||||
<% if authorize_for 'news', 'add_comment' %>
|
||||
<%= start_form_tag :action => 'add_comment', :id => @news %>
|
||||
<% form_tag({:action => 'add_comment', :id => @news}) do %>
|
||||
<%= error_messages_for 'comment' %>
|
||||
<p><label for="comment_comment"><%= l(:label_comment_add) %></label><br />
|
||||
<%= text_area 'comment', 'comment', :cols => 60, :rows => 6 %></p>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<div>
|
||||
<div class="rightbox">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
|
||||
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
|
||||
<p>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<%= check_box_tag 'show_documents', 1, @show_documents %><%= hidden_field_tag 'show_documents', 0, :id => nil %> <%=l(:label_document_plural)%>
|
||||
</p>
|
||||
<p class="textcenter"><%= submit_tag l(:button_apply), :class => 'button-small' %></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%=l(:label_document_new)%></h2>
|
||||
|
||||
<%= start_form_tag( { :action => 'add_document', :id => @project }, :class => "tabular", :multipart => true) %>
|
||||
<% form_tag( { :action => 'add_document', :id => @project }, :class => "tabular", :multipart => true) do %>
|
||||
<%= render :partial => 'documents/form' %>
|
||||
|
||||
<div class="box">
|
||||
|
@ -10,6 +10,6 @@
|
|||
</div>
|
||||
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<%= error_messages_for 'attachment' %>
|
||||
<div class="box">
|
||||
<%= start_form_tag ({ :action => 'add_file', :id => @project }, :multipart => true, :class => "tabular") %>
|
||||
<% form_tag({ :action => 'add_file', :id => @project }, :multipart => true, :class => "tabular") do %>
|
||||
|
||||
<p><label for="version_id"><%=l(:field_version)%> <span class="required">*</span></label>
|
||||
<%= select_tag "version_id", options_from_collection_for_select(@versions, "id", "name") %></p>
|
||||
|
@ -12,4 +12,4 @@
|
|||
<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
|
||||
</div>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%= l(:label_query_new) %></h2>
|
||||
|
||||
<%= start_form_tag :action => 'add_query', :id => @project %>
|
||||
<% form_tag({:action => 'add_query', :id => @project}) do %>
|
||||
<%= render :partial => 'queries/form', :locals => {:query => @query} %>
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%= l(:label_calendar) %></h2>
|
||||
|
||||
<%= start_form_tag :action => 'calendar', :id => @project %>
|
||||
<% form_tag({:action => 'calendar', :id => @project}) do %>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align="left" style="width:150px">
|
||||
|
@ -22,7 +22,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<br />
|
||||
|
||||
<table class="list with-cells">
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
<div>
|
||||
|
||||
<div class="rightbox" style="width:140px;">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p><strong><%=l(:label_tracker_plural)%></strong></p>
|
||||
<% @trackers.each do |tracker| %>
|
||||
<%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
|
||||
<%= tracker.name %><br />
|
||||
<% end %>
|
||||
<p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<% ver_id = nil
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
<%=l(:text_project_destroy_confirmation)%></p>
|
||||
|
||||
<p>
|
||||
<%= start_form_tag({:controller => 'projects', :action => 'destroy', :id => @project}) %>
|
||||
<% form_tag({:controller => 'projects', :action => 'destroy', :id => @project}) do %>
|
||||
<%= hidden_field_tag "confirm", 1 %>
|
||||
<%= submit_tag l(:button_delete) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</p>
|
||||
</center>
|
||||
</div>
|
|
@ -8,7 +8,7 @@
|
|||
<table width="100%">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p>
|
||||
<input type="text" name="months" size="2" value="<%= @months %>" />
|
||||
<%= l(:label_months_from) %>
|
||||
|
@ -17,7 +17,7 @@
|
|||
<%= hidden_field_tag 'zoom', @zoom %>
|
||||
<%= submit_tag l(:button_submit), :class => "button-small" %>
|
||||
</p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</td>
|
||||
<td align="right">
|
||||
<%= if @zoom < 4
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
</div>
|
||||
<h2><%=l(:label_issue_plural)%></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'list_issues'}, :id => 'query_form') %>
|
||||
<% form_tag({:action => 'list_issues'}, :id => 'query_form') do %>
|
||||
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<div class="contextual">
|
||||
<%= link_to_remote l(:button_apply),
|
||||
{ :url => { :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 },
|
||||
|
@ -42,7 +42,7 @@
|
|||
<p><i><%= l(:label_no_data) %></i></p>
|
||||
<% else %>
|
||||
|
||||
<%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
|
||||
<% form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) do %>
|
||||
<table class="list">
|
||||
<thead><tr>
|
||||
<th></th>
|
||||
|
@ -79,6 +79,6 @@
|
|||
<%= pagination_links_full @issue_pages %>
|
||||
[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
|
||||
</p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
|
@ -1,7 +1,7 @@
|
|||
<h2><%=l(:button_move)%></h2>
|
||||
|
||||
|
||||
<%= start_form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") do %>
|
||||
|
||||
<div class="box">
|
||||
<p><label><%= l(:label_issue_plural) %>:</label>
|
||||
|
@ -21,4 +21,4 @@
|
|||
<%= select_tag "new_tracker_id", options_from_collection_for_select(@trackers, "id", "name") %></p>
|
||||
</div>
|
||||
<%= submit_tag l(:button_move) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
|
|
@ -29,12 +29,12 @@
|
|||
<td><%= member.user.display_name %></td>
|
||||
<td align="center">
|
||||
<% if authorize_for('members', 'edit') %>
|
||||
<%= start_form_tag :controller => 'members', :action => 'edit', :id => member %>
|
||||
<% form_tag({:controller => 'members', :action => 'edit', :id => member}) do %>
|
||||
<select name="member[role_id]">
|
||||
<%= options_from_collection_for_select @roles, "id", "name", member.role_id %>
|
||||
</select>
|
||||
<%= submit_tag l(:button_change), :class => "button-small" %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</td>
|
||||
<td align="center">
|
||||
|
@ -47,7 +47,7 @@
|
|||
</table>
|
||||
<% if authorize_for('projects', 'add_member') %>
|
||||
<label><%=l(:label_member_new)%></label><br/>
|
||||
<%= start_form_tag :controller => 'projects', :action => 'add_member', :tab => 'members', :id => @project %>
|
||||
<% form_tag({:controller => 'projects', :action => 'add_member', :tab => 'members', :id => @project}) do %>
|
||||
<select name="member[user_id]">
|
||||
<%= options_from_collection_for_select @users, "id", "display_name", @member.user_id %>
|
||||
</select>
|
||||
|
@ -55,7 +55,7 @@
|
|||
<%= options_from_collection_for_select @roles, "id", "name", @member.role_id %>
|
||||
</select>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
|
@ -80,17 +80,17 @@
|
|||
|
||||
<div id="tab-content-categories" class="tab-content" style="display:none;">
|
||||
<table class="list">
|
||||
<thead><th><%= l(:label_issue_status) %></th><th></th></thead>
|
||||
<thead><th><%= l(:label_issue_category) %></th><th></th></thead>
|
||||
<tbody>
|
||||
<% for @category in @project.issue_categories %>
|
||||
<% unless @category.new_record? %>
|
||||
<tr class="<%= cycle 'odd', 'even' %>">
|
||||
<td>
|
||||
<%= start_form_tag :controller => 'issue_categories', :action => 'edit', :id => @category %>
|
||||
<% form_tag({:controller => 'issue_categories', :action => 'edit', :id => @category}) do %>
|
||||
<%= text_field 'category', 'name', :size => 25 %>
|
||||
<% if authorize_for('issue_categories', 'edit') %>
|
||||
<%= submit_tag l(:button_save), :class => "button-small" %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</td>
|
||||
<td align="center">
|
||||
|
@ -102,12 +102,12 @@
|
|||
</tbody>
|
||||
</table>
|
||||
<% if authorize_for('projects', 'add_issue_category') %>
|
||||
<%= start_form_tag :action => 'add_issue_category', :tab => 'categories', :id => @project %>
|
||||
<% form_tag({:action => 'add_issue_category', :tab => 'categories', :id => @project}) do %>
|
||||
<label for="issue_category_name"><%=l(:label_issue_category_new)%></label><br/>
|
||||
<%= error_messages_for 'issue_category' %>
|
||||
<%= text_field 'issue_category', 'name', :size => 25 %>
|
||||
<%= submit_tag l(:button_create) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%= l(:label_query) %></h2>
|
||||
|
||||
<%= start_form_tag :action => 'edit', :id => @query %>
|
||||
<% form_tag({:action => 'edit', :id => @query}) do %>
|
||||
<%= render :partial => 'form', :locals => {:query => @query} %>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
|
@ -1,8 +1,8 @@
|
|||
<div class="contextual">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
|
||||
<%= submit_tag 'OK' %></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %></h2>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="contextual">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
|
||||
<%= submit_tag 'OK' %></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<h2><%= l(:label_revision) %> <%= @revision.identifier %></h2>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="contextual">
|
||||
<%= start_form_tag %>
|
||||
<% form_tag do %>
|
||||
<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
|
||||
<%= submit_tag 'OK' %></p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => @entry.kind, :revision => @rev } %></h2>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<p><%=l(:text_workflow_edit)%>:</p>
|
||||
|
||||
<%= start_form_tag ({:action => 'workflow'}, :method => 'get') %>
|
||||
<% form_tag ({:action => 'workflow'}, :method => 'get') do %>
|
||||
<div style="float:left;margin-right:10px;">
|
||||
<p><label for="role_id"><%=l(:label_role)%></label><br/>
|
||||
<select id="role_id" name="role_id">
|
||||
|
@ -19,13 +19,13 @@
|
|||
<%= submit_tag l(:button_edit) %>
|
||||
</p>
|
||||
</div>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
|
||||
|
||||
<% unless @tracker.nil? or @role.nil? %>
|
||||
<div class="box">
|
||||
<%= form_tag ({:action => 'workflow', :role_id => @role, :tracker_id => @tracker }, :id => 'workflow_form' ) %>
|
||||
<% form_tag ({:action => 'workflow', :role_id => @role, :tracker_id => @tracker }, :id => 'workflow_form' ) do %>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center"><strong><%=l(:label_current_status)%></strong></td>
|
||||
|
@ -63,7 +63,7 @@
|
|||
</p>
|
||||
<br />
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
|
||||
<% end %>
|
||||
</div>
|
|
@ -1,6 +1,6 @@
|
|||
<h2><%= l(:label_settings) %></h2>
|
||||
|
||||
<%= start_form_tag({:action => 'edit'}, :class => "tabular") %>
|
||||
<% form_tag({:action => 'edit'}, :class => "tabular") do %>
|
||||
<div class="box">
|
||||
<p><label><%= l(:setting_app_title) %></label>
|
||||
<%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
|
||||
|
@ -34,4 +34,4 @@
|
|||
|
||||
</div>
|
||||
<%= submit_tag l(:button_save) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
|
@ -2,7 +2,7 @@
|
|||
<h3><%= l(:label_project_plural) %></h3>
|
||||
|
||||
<% @user.memberships.each do |membership| %>
|
||||
<%= start_form_tag({ :action => 'edit_membership', :id => @user, :membership_id => membership }, :class => "tabular") %>
|
||||
<% form_tag({ :action => 'edit_membership', :id => @user, :membership_id => membership }, :class => "tabular") do %>
|
||||
<p style="margin:0;padding-top:0;">
|
||||
<label><%= membership.project.name %></label>
|
||||
<select name="membership[role_id]">
|
||||
|
@ -11,12 +11,12 @@
|
|||
<%= submit_tag l(:button_change), :class => "button-small" %>
|
||||
<%= link_to l(:button_delete), {:action => 'destroy_membership', :id => @user, :membership_id => membership }, :confirm => l(:text_are_you_sure), :post => true, :class => 'icon icon-del' %>
|
||||
</p>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<hr />
|
||||
<p>
|
||||
<label><%=l(:label_project_new)%></label><br/>
|
||||
<%= start_form_tag({ :action => 'edit_membership', :id => @user }) %>
|
||||
<% form_tag({ :action => 'edit_membership', :id => @user }) do %>
|
||||
<select name="membership[project_id]">
|
||||
<%= options_from_collection_for_select @projects, "id", "name", @membership.project_id %>
|
||||
</select>
|
||||
|
@ -24,6 +24,6 @@
|
|||
<%= options_from_collection_for_select @roles, "id", "name", @membership.role_id %>
|
||||
</select>
|
||||
<%= submit_tag l(:button_add) %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</p>
|
||||
</div>
|
|
@ -28,7 +28,7 @@
|
|||
<td align="center"><%= format_time(user.created_on) %></td>
|
||||
<td align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
||||
<td align="center">
|
||||
<%= start_form_tag :action => 'edit', :id => user %>
|
||||
<% form_tag({:action => 'edit', :id => user}) do %>
|
||||
<% if user.locked? %>
|
||||
<%= hidden_field_tag 'user[status]', User::STATUS_ACTIVE %>
|
||||
<%= submit_tag l(:button_unlock), :class => "button-small" %>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<%= hidden_field_tag 'user[status]', User::STATUS_LOCKED %>
|
||||
<%= submit_tag l(:button_lock), :class => "button-small" %>
|
||||
<% end %>
|
||||
<%= end_form_tag %>
|
||||
<% end %>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in New Issue