Feature #24720 » 0003-Remove-superfluous-spaces-before-colon.patch
app/views/admin/projects.html.erb | ||
---|---|---|
6 | 6 | |
7 | 7 |
<%= form_tag({}, :method => :get) do %> |
8 | 8 |
<fieldset><legend><%= l(:label_filter_plural) %></legend> |
9 |
<label for='status'><%= l(:field_status) %> :</label>
|
|
9 |
<label for='status'><%= l(:field_status) %>:</label> |
|
10 | 10 |
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %> |
11 | 11 |
<label for='name'><%= l(:label_project) %>:</label> |
12 | 12 |
<%= text_field_tag 'name', params[:name], :size => 30 %> |
app/views/projects/settings/_versions.html.erb | ||
---|---|---|
2 | 2 | |
3 | 3 |
<%= form_tag(settings_project_path(@project, :tab => 'versions'), :method => :get) do %> |
4 | 4 |
<fieldset><legend><%= l(:label_filter_plural) %></legend> |
5 |
<label for='status'><%= l(:field_status) %> :</label>
|
|
5 |
<label for='status'><%= l(:field_status) %>:</label> |
|
6 | 6 |
<%= select_tag 'version_status', options_for_select([[l(:label_all), '']] + Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]}, @version_status), :onchange => "this.form.submit(); return false;" %> |
7 | 7 |
<label for='name'><%= l(:label_version) %>:</label> |
8 | 8 |
<%= text_field_tag 'version_name', @version_name, :size => 30 %> |
- « Previous
- 1
- …
- 4
- 5
- 6
- Next »