##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11168:b5c2ca56666e
r11491:19f70c95d1ae
Show More
_form.html.erb
99 lines | 3.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'custom_field' %>
Jean-Philippe Lang
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <div class="box tabular">
Jean-Philippe Lang
* code and views cleaning...
r97 <p><%= f.text_field :name, :required => true %></p>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <p><%= f.select :field_format, custom_field_formats_for_select(@custom_field), {}, :disabled => !@custom_field.new_record? %></p>
<% if @custom_field.format_in? 'list', 'user', 'version' %>
Jean-Philippe Lang
Adds a message about disabling multiple values on custom field form (#12251)....
r10938 <p>
<%= f.check_box :multiple %>
<% if !@custom_field.new_record? && @custom_field.multiple %>
<em class="info"><%= l(:text_turning_multiple_off) %></em>
<% end %>
</p>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <% end %>
<% unless @custom_field.format_in? 'list', 'bool', 'date', 'user', 'version' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="custom_field_min_length"><%=l(:label_min_max_length)%></label>
Jean-Philippe Lang
* code and views cleaning...
r97 <%= f.text_field :min_length, :size => 5, :no_label => true %> -
Toshi MARUYAMA
replace <br> to <br /> at app/views/custom_fields/_form.rhtml....
r6379 <%= f.text_field :max_length, :size => 5, :no_label => true %><br />(<%=l(:text_min_max_length_info)%>)</p>
<p><%= f.text_field :regexp, :size => 50 %><br />(<%=l(:text_regexp_info)%>)</p>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <% end %>
<% if @custom_field.format_in? 'list' %>
Jean-Philippe Lang
Removes duplicate DOM id in custom field form....
r4886 <p>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_form.html.erb...
r7280 <%= f.text_area :possible_values, :value => @custom_field.possible_values.to_a.join("\n"), :rows => 15 %>
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <em class="info"><%= l(:text_custom_field_possible_values_info) %></em>
Jean-Philippe Lang
Removes duplicate DOM id in custom field form....
r4886 </p>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <% end %>
Jean-Philippe Lang
Use a textarea instead of an input for the default value of long text custom fields (#13176)....
r11166 <% case @custom_field.field_format %>
<% when 'bool' %>
<p><%= f.check_box(:default_value) %></p>
<% when 'text' %>
<p><%= f.text_area(:default_value, :rows => 8) %></p>
Jean-Philippe Lang
Adds the date picker for the default value of date custom fields....
r11168 <% when 'date' %>
<p><%= f.text_field(:default_value, :size => 10) %></p>
<%= calendar_for('custom_field_default_value') %>
Jean-Philippe Lang
Use a textarea instead of an input for the default value of long text custom fields (#13176)....
r11166 <% when 'user', 'version' %>
<% else %>
<p><%= f.text_field(:default_value) %></p>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <% end %>
Eric Davis
Added several more plugin hooks:...
r2535 <%= call_hook(:view_custom_fields_form_upper_box, :custom_field => @custom_field, :form => f) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <div class="box tabular">
Jean-Philippe Lang
Make use of tracker_ids association in issue custom field form....
r2270 <% case @custom_field.class.name
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 when "IssueCustomField" %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/custom_fields/_form.rhtml....
r6224
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <fieldset><legend><%=l(:label_tracker_plural)%></legend>
Jean-Philippe Lang
Code cleanup....
r9531 <% Tracker.sorted.all.each do |tracker| %>
Toshi MARUYAMA
[#9489] use class instead of redundant id for label "no-css"...
r7581 <%= check_box_tag "custom_field[tracker_ids][]",
tracker.id,
(@custom_field.trackers.include? tracker),
:id => "custom_field_tracker_ids_#{tracker.id}" %>
<label class="no-css" for="custom_field_tracker_ids_<%=tracker.id%>">
<%= h(tracker.name) %>
</label>
Jean-Philippe Lang
* code and views cleaning...
r97 <% end %>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_form.html.erb...
r7280 <%= hidden_field_tag "custom_field[tracker_ids][]", '' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </fieldset>
Jean-Philippe Lang
* code and views cleaning...
r97 &nbsp;
<p><%= f.check_box :is_required %></p>
<p><%= f.check_box :is_for_all %></p>
Jean-Philippe Lang
Custom fields for issues can now be used as filters on issue list....
r444 <p><%= f.check_box :is_filter %></p>
Jean-Philippe Lang
Search engine: issue custom fields can now be searched....
r981 <p><%= f.check_box :searchable %></p>
Toshi MARUYAMA
remove trailing white-spaces from app/views/custom_fields/_form.rhtml....
r6224
Jean-Philippe Lang
* code and views cleaning...
r97 <% when "UserCustomField" %>
<p><%= f.check_box :is_required %></p>
Jean-Philippe Lang
Adds a "visible" option on User and Project custom fields (#1738)....
r4268 <p><%= f.check_box :visible %></p>
Jean-Philippe Lang
User custom fields can now be set as editable so that users can edit them on 'My account'....
r2274 <p><%= f.check_box :editable %></p>
Jean-Philippe Lang
Ability to filter issues using project, author, assignee and target version custom fields (#8161)....
r9981 <p><%= f.check_box :is_filter %></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
* code and views cleaning...
r97 <% when "ProjectCustomField" %>
<p><%= f.check_box :is_required %></p>
Jean-Philippe Lang
Adds a "visible" option on User and Project custom fields (#1738)....
r4268 <p><%= f.check_box :visible %></p>
Jean-Philippe Lang
Allow project custom fields to be searchable (#4945)....
r3396 <p><%= f.check_box :searchable %></p>
Jean-Philippe Lang
Ability to filter issues using project, author, assignee and target version custom fields (#8161)....
r9981 <p><%= f.check_box :is_filter %></p>
<% when "VersionCustomField" %>
<p><%= f.check_box :is_required %></p>
<p><%= f.check_box :is_filter %></p>
<% when "GroupCustomField" %>
<p><%= f.check_box :is_required %></p>
<p><%= f.check_box :is_filter %></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
Adds custom fields on time entries (#772)....
r1672 <% when "TimeEntryCustomField" %>
<p><%= f.check_box :is_required %></p>
Jean-Philippe Lang
Adds filters for regular/custom fields to the time entries list/report (#10191)....
r10743 <p><%= f.check_box :is_filter %></p>
Jean-Philippe Lang
Adds custom fields on time entries (#772)....
r1672
Eric Davis
Enumerations can now have custom fields defined on them. #4077...
r2831 <% else %>
<p><%= f.check_box :is_required %></p>
Toshi MARUYAMA
remove trailing white-spaces from app/views/custom_fields/_form.rhtml....
r6224
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
Eric Davis
Added several more plugin hooks:...
r2535 <%= call_hook(:"view_custom_fields_form_#{@custom_field.type.to_s.underscore}", :custom_field => @custom_field, :form => f) %>
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
Adds the date picker for the default value of date custom fields....
r11168
<% include_calendar_headers_tags %>