2012-08-06 18:15:31 -07:00
|
|
|
- title 'Modeling Hub'
|
|
|
|
|
2012-08-07 14:32:51 -07:00
|
|
|
= form_tag load_pet_path, :id => 'needed-items-form' do
|
|
|
|
- cache :action_suffix => 'needed_items_content' do
|
2012-08-06 18:15:31 -07:00
|
|
|
%h3 Looking for ways to contribute?
|
|
|
|
|
|
|
|
%p
|
|
|
|
Enter your pet's name below and we'll tell you what items you can help us
|
|
|
|
model. Thanks for your help!
|
|
|
|
|
|
|
|
= origin_tag bulk_pets_path
|
|
|
|
= destination_tag 'needed_items'
|
|
|
|
|
|
|
|
%input#needed-items-pet-name-field{:type => "text", :name => "name"}/
|
|
|
|
%input{:type => "submit", :value => "Submit"}/
|
|
|
|
|
|
|
|
#needed-items-alert.alert
|
|
|
|
|
|
|
|
#needed-items-pet.script-only
|
|
|
|
%h4
|
|
|
|
%img#needed-items-pet-thumbnail.inline-image
|
|
|
|
Items
|
|
|
|
%span#needed-items-pet-name
|
|
|
|
can model
|
|
|
|
|
|
|
|
%button#needed-items-reload Reload
|
|
|
|
|
|
|
|
%ul#needed-items-pet-items
|
|
|
|
|
2012-08-07 14:32:51 -07:00
|
|
|
= form_tag load_pet_path, :id => 'bulk-pets-form' do
|
|
|
|
- cache :action_suffix => 'bulk_pets_content' do
|
2012-08-06 18:15:31 -07:00
|
|
|
%h3 Model pets in bulk
|
|
|
|
|
|
|
|
%p
|
|
|
|
Got a lot of pets to model? Just keep typing them into the box below, or
|
|
|
|
even paste in a whole list of names, one name per line. Thanks for your
|
|
|
|
help!
|
|
|
|
|
|
|
|
= origin_tag bulk_pets_path
|
|
|
|
|
|
|
|
%div.noscript
|
|
|
|
%input{:name => "name", :type => "text"}/
|
|
|
|
%input{:type => "submit", :value => "Load pet"}/
|
|
|
|
%div.script-only
|
|
|
|
%textarea
|
|
|
|
%button#bulk-pets-form-add{:type => "button"} Add
|
|
|
|
%button#bulk-pets-form-clear{:type => "button"} Clear
|
|
|
|
%ul
|
|
|
|
|
2012-08-07 14:32:51 -07:00
|
|
|
- cache :action_suffix => 'item_template' do
|
2012-08-06 18:15:31 -07:00
|
|
|
%script#item-template{:type => 'text/x-jquery-tmpl'}
|
|
|
|
%li{:class => 'object{{if owned}} owned{{/if}}'}
|
|
|
|
= link_to item_path(':id').sub(':id', '${id}') do
|
|
|
|
%img{:src => '${thumbnail_url}', :alt => '${description}', :title => '${description}'}
|
|
|
|
%span.name ${name}
|
|
|
|
|
|
|
|
{{if nc}}
|
|
|
|
= nc_icon
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
.closeted-icons
|
|
|
|
{{if owned}}
|
|
|
|
= owned_icon
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if wanted}}
|
|
|
|
= wanted_icon
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{if owned}}
|
|
|
|
%span.object-owned You own this item
|
|
|
|
{{/if}}
|
|
|
|
|
2010-12-06 15:50:13 -08:00
|
|
|
- content_for :javascripts do
|
2012-08-06 18:15:31 -07:00
|
|
|
= include_javascript_libraries :jquery, :jquery_tmpl
|
2010-12-06 15:50:13 -08:00
|
|
|
= include_javascripts :bulk_pets_package
|