2024-01-24 06:53:37 -08:00
|
|
|
- title "Styling Studio"
|
2024-09-30 16:06:22 -07:00
|
|
|
- use_responsive_design
|
2024-01-24 06:53:37 -08:00
|
|
|
|
|
|
|
%p
|
2024-02-01 06:58:54 -08:00
|
|
|
Here's all the new NC Pet Styles we have! They're available in the app too,
|
|
|
|
by opening the emotion picker and clicking the "Styles" tab.
|
2024-01-24 06:53:37 -08:00
|
|
|
|
|
|
|
%p
|
2024-02-01 06:58:54 -08:00
|
|
|
If you have an Alt Style we don't, please model it by entering your pet's
|
|
|
|
name on the homepage! Thank you! 💖
|
2024-01-24 06:53:37 -08:00
|
|
|
|
2024-01-24 07:22:08 -08:00
|
|
|
%p
|
2024-05-29 18:47:06 -07:00
|
|
|
Also, heads-up: Because our system can only collect "item data" for normal
|
|
|
|
wearable items, there's not a great way for us to get style tokens onto
|
|
|
|
tradelists… this may change someday, but probably not soon, sorry!
|
2024-01-24 07:22:08 -08:00
|
|
|
|
2024-09-30 16:10:26 -07:00
|
|
|
= form_with url: alt_styles_path, method: :get,
|
|
|
|
class: "rainbow-pool-filters" do |f|
|
2024-09-30 16:06:22 -07:00
|
|
|
%fieldset
|
|
|
|
%legend Filter by:
|
2024-09-30 17:25:51 -07:00
|
|
|
= f.select :series, @all_series_names,
|
|
|
|
selected: @series_name, include_blank: "Style…"
|
2024-09-30 16:35:58 -07:00
|
|
|
= f.select :color, @all_color_names,
|
2024-09-30 16:06:22 -07:00
|
|
|
selected: @color&.human_name, include_blank: "Color…"
|
2024-09-30 16:35:58 -07:00
|
|
|
= f.select :species, @all_species_names,
|
2024-09-30 16:06:22 -07:00
|
|
|
selected: @species&.human_name, include_blank: "Species…"
|
2024-09-30 18:05:05 -07:00
|
|
|
= f.submit "Go", name: nil
|
2024-09-30 16:06:22 -07:00
|
|
|
|
2024-09-30 17:35:18 -07:00
|
|
|
= will_paginate @alt_styles, class: "rainbow-pool-pagination"
|
|
|
|
|
|
|
|
%ul.rainbow-pool-list= render @alt_styles
|
|
|
|
|
|
|
|
= will_paginate @alt_styles, class: "rainbow-pool-pagination"
|
2024-09-30 16:06:22 -07:00
|
|
|
|
|
|
|
- content_for :stylesheets do
|
2024-09-30 16:10:26 -07:00
|
|
|
= stylesheet_link_tag "application/rainbow-pool"
|
2024-09-30 16:06:22 -07:00
|
|
|
= page_stylesheet_link_tag "alt_styles/index"
|