2022-09-01 11:49:15 +00:00
|
|
|
<% if !Rails.env.production? || ENV.fetch('ENABLE_ACCOUNT_SEEDING', nil) %>
|
2022-08-31 19:01:43 +00:00
|
|
|
<section class="main-content__body">
|
|
|
|
<hr/>
|
|
|
|
<%= form_for([:seed, namespace, page.resource], method: :post, html: { class: "form" }) do |f| %>
|
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
<div><p> Click the button to generate seed data into this account for demos.</p>
|
|
|
|
<p class="text-color-red">Note: This will clear all the existing data in this account.</p>
|
|
|
|
</div>
|
|
|
|
<%= f.submit 'Generate Seed Data' %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</section>
|
|
|
|
<% end %>
|