app/views/organizations/_form.html.haml in artfully_ose-1.2.0.pre.19 vs app/views/organizations/_form.html.haml in artfully_ose-1.2.0.pre.20
- old
+ new
@@ -10,9 +10,15 @@
= form.label :email, 'Organization Email', :class=>'control-label'
.controls
= form.email_field :email, :placeholder => 'contact@organization.org', :required => true, :class => 'input-xlarge email-popup', "data-content" => "Your patrons will be able to respond to this email address when receiving ticket/donation receipts. You can change this at any time."
%span.help-inline (default contact for your patrons)
+ - unless @organization.new_record?
+ .control-group
+ = form.label :cached_slug, 'Storefront URL', :class=>'control-label'
+ .controls
+ = form.text_field :cached_slug, :placeholder => @organization.cached_slug, :required => true, :class => 'input-xlarge'
+
%fieldset
%legend Details
.control-group
= form.label :country, :class => 'control-label'
.controls= form.select :country, [(h form.object.country || "United States")], selected: (form.object.country || "United States"), :required => true