<% widget.java_definition.getWidgetProperties().sort { |w1, w2| natural_comparison(w1.key, w2.key) }.each do |property_def| %>
<tr>
- <td class="form-key-cell"><%= property_def.key() -%><%= "*" unless property_def.optional()==true -%></td>
+ <td class="form-key-cell"><%= property_def.key() -%><%= "*" unless property_def.optional() -%></td>
<td class="form-val-cell" id="row_<%= property_def.key() -%>">
<%= property_value_field(property_def, widget.property_text_value(property_def.key())) -%>
+ <% if property_def.key() == 'filter' %>
+ <%= link_to message('widget.filter.edit'), {:controller => :filters, :action => :manage}, :class => 'link-action' %>
+ <% end %>
<div class="form-val-note">
<%= message("widget." + widget.key + ".param." + property_def.key(), :default => property_def.description()) -%>
</div>