From 286e3808e2c7ee9d86fe81d1cc37bd74b5bc4f65 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 31 Mar 2025 17:13:34 -0500 Subject: [PATCH] Removed unused filters (for now) --- app/views/filters/_dialog.html.erb | 89 ------------------------------ 1 file changed, 89 deletions(-) diff --git a/app/views/filters/_dialog.html.erb b/app/views/filters/_dialog.html.erb index ecf1c1b9a..0cc954b20 100644 --- a/app/views/filters/_dialog.html.erb +++ b/app/views/filters/_dialog.html.erb @@ -77,95 +77,6 @@ <% end %> - - <% if workflow = Current.account.workflows.first %> - -
  • In Stage
  • - <% workflow.stages.each do |stage| %> -
  • - <%= label_tag "stage_ids_#{stage.id}", class: "btn filter__button" do %> - <%= check_box_tag "stage_ids[]", stage.id, filter.stages.include?(stage), id: "stage_ids_#{stage.id}", hidden: true %> - <%= stage.name %> - <%= icon_tag "close" %> - <% end %> -
  • - <% end %> -
    - <% end %> - - <% if (tags = Current.account.tags.order(:title)).any? %> -
    -
    Tagged
    - - <% tags.each do |tag| %> -
    - -
    - <% end %> -
    - <% end %> - -
    -
    Assigned to…
    - -
    - -
    - -
    - -
    - - <% Current.account.users.active.without(Current.user).order(:name).each do |user| %> -
    - -
    - <% end %> -
    - -
    -
    Added by…
    - -
    - -
    - - <% Current.account.users.active.without(Current.user).order(:name).each do |user| %> -
    - -
    - <% end %>
    <% end %>