summaryrefslogtreecommitdiffstats
path: root/app/views/custom_fields/formats/_progressbar.html.erb
blob: ceae14ac82670d686790e24cffd16e979d0f71e2 (plain)
1
2
3
4
5
6
<p>
  <%= f.select :ratio_interval,
               [5, 10].collect {|i| ["#{i} %", i]},
               selected: f.object.new_record? ? Redmine::FieldFormat::ProgressbarFormat.default_ratio_interval : f.object.ratio_interval,
               required: true %>
</p>