impress/app/views/items
Emi Matchu d66f81c96b Remove support for old "Nebula (fake)" April Fools color
This hasn't worked for a while anyway! Let's remove the bits of code
where we deal with it, and the database field that signals it. (We also
make a corresponding change in Impress 2020, so it doesn't crash trying
to query based on the `prank` column.)

I also ran this snippet to clear out all the Nebula stuff in the db:

```rb
Color.transaction do
	nebula = Color.where(prank: true).find_by_name("Nebula")
	nebula.pet_types.includes(pet_states: :swf_assets).each do |pet_type|
		pet_type.pet_states.each do |pet_state|
			pet_state.parent_swf_asset_relationships.each do |psa|
				psa.swf_asset.destroy!
				psa.destroy!
			end
			pet_state.destroy!
		end
		pet_type.destroy!
	end
	nebula.destroy!
end
```
2024-09-27 19:38:53 -07:00
..
_item.html.haml Move item_link partial caching to a helper rather than the template itself 2013-06-22 16:31:46 -07:00
_item_header.html.haml Serve jquery and jquery.tmpl from our own codebase, instead of a CDN 2024-09-20 19:23:53 -07:00
_item_link.html.haml Use table layout for Item Getting Guide item list 2024-05-20 15:23:34 -07:00
_item_list_row.html.haml Flag items you already own in the Item Getting Guide 2024-06-15 15:47:52 -07:00
_outfit_viewer.html.haml Handle crash on new item page when SWF asset has no image available 2024-09-06 17:57:18 -07:00
index.html.haml Remove FragmentLocalization and localized_cache helper 2024-09-20 20:10:04 -07:00
show.html.haml Remove support for old "Nebula (fake)" April Fools color 2024-09-27 19:38:53 -07:00
sources.html.haml Link to the NC Mall homepage from the Shopping List 2024-07-09 13:30:28 -07:00