2024-09-27 20:01:07 -07:00
|
|
|
- title "#{@pet_type.human_name}: #{pose_name @pet_state.pose}"
|
2024-09-26 20:24:31 -07:00
|
|
|
- use_responsive_design
|
|
|
|
|
2024-09-27 20:01:07 -07:00
|
|
|
%ol.breadcrumbs
|
|
|
|
%li
|
|
|
|
= link_to "Rainbow Pool", pet_types_path
|
|
|
|
%li
|
|
|
|
= link_to @pet_type.color.human_name,
|
|
|
|
pet_types_path(color: @pet_type.color.human_name)
|
2024-09-27 22:14:00 -07:00
|
|
|
%li{"data-relation-to-prev": "sibling"}
|
2024-09-27 20:01:07 -07:00
|
|
|
= link_to @pet_type.species.human_name,
|
|
|
|
pet_types_path(species: @pet_type.species.human_name)
|
|
|
|
%li
|
2024-09-27 22:14:00 -07:00
|
|
|
= link_to "Appearances", @pet_type
|
2024-09-27 20:01:07 -07:00
|
|
|
%li
|
2024-09-27 22:14:00 -07:00
|
|
|
\##{@pet_state.id}
|
|
|
|
- if support_staff?
|
|
|
|
%li{"data-relation-to-prev": "menu"}
|
|
|
|
= link_to "Edit", edit_pet_type_pet_state_path(@pet_type, @pet_state)
|
2024-09-27 20:01:07 -07:00
|
|
|
|
2024-09-26 20:24:31 -07:00
|
|
|
= outfit_viewer pet_state: @pet_state
|
|
|
|
|
|
|
|
%dl
|
|
|
|
%dt{title: "Pose usually affects just the eyes and mouth. Neopets " +
|
|
|
|
"genders these as Male/Female, but I don't like those " +
|
|
|
|
"terms for like… it's just eyelashes! Sheesh!"}
|
|
|
|
Pose
|
|
|
|
%dd
|
|
|
|
= pose_name @pet_state.pose
|
|
|
|
- if @pet_state.pose == "UNCONVERTED"
|
|
|
|
(Retired, replaced by #{link_to "Alt Styles", alt_styles_path})
|
|
|
|
|
|
|
|
%dt{title: "This is our own internal ID number, nothing to do with " +
|
|
|
|
"Neopets's official data."}
|
|
|
|
DTI ID
|
|
|
|
%dd= @pet_state.id
|
|
|
|
|
|
|
|
%dt{title: "When we notice a form looks wrong, we mark it Glitched, to " +
|
|
|
|
"tell our systems to prefer other forms for this pose instead."}
|
|
|
|
Glitched?
|
|
|
|
%dd
|
|
|
|
- if @pet_state.glitched?
|
|
|
|
👾 Yes, it's bad news bonko'd
|
|
|
|
- else
|
|
|
|
✅ Not marked as Glitched
|
|
|
|
|
|
|
|
- content_for :stylesheets do
|
2024-09-27 20:01:07 -07:00
|
|
|
= stylesheet_link_tag "application/breadcrumbs"
|
2024-09-26 20:24:31 -07:00
|
|
|
= stylesheet_link_tag "application/hanger-spinner"
|
|
|
|
= stylesheet_link_tag "application/outfit-viewer"
|
2024-09-27 22:14:00 -07:00
|
|
|
= page_stylesheet_link_tag "pet_states/show"
|
2024-09-26 20:24:31 -07:00
|
|
|
|
|
|
|
- content_for :javascripts do
|
|
|
|
= javascript_include_tag "outfit-viewer", async: true
|