<%# Template to clone %>
<%= render :partial => '/topics/topic', :locals => { :topic => Topic.new( { :posx => -1000, :posy => -1000 } ) } %>
<% for topic in @cloud.topics %>
<%= render :partial => (topic.inherited ? '/topics/readonly_topic' : '/topics/topic'), :locals => { :topic => topic } %>
<% end %>
<% if @cloud.topics.empty? %>
Doubleclick anywhere to get started
<% end %>
<% form_remote_for(:cloud, :url => cloud_path(@cloud), :html => { :method => :put }) do |f| %>
Password: <%= f.text_field :password, :size => 20 %>
<%= submit_tag "Save", :onclick => "new Effect.Fade('cloud_properties')" %>
- to edit: <%= f.check_box :protect_edit %>
- to view: <%= f.check_box :protect_show %>
<% end %>