diff --git a/app/views/simple_configs/new.html.erb b/app/views/simple_configs/new.html.erb index 1b0f190..f3d78ce 100644 --- a/app/views/simple_configs/new.html.erb +++ b/app/views/simple_configs/new.html.erb @@ -1,22 +1,36 @@

New Client Config

<%= bootstrap_form_for(@simple_config, url: host_simple_configs_path(@host), layout: :horizontal, label_col: 'col-xs-3', control_col: 'col-xs-8') do |f| %> <%= f.text_field :name %>
<%= f.select :day, options_for_select(SimpleConfiguration.days.keys, @simple_config.day), require: true %> <%= f.number_field :hour, value: @simple_config.hour, min: 0, max: 23 %> <%= f.number_field :minute, value: @simple_config.minute, min: 0, max: 59 %> <%= f.submit 'Create Config', class: 'btn btn-success col-xs-3 col-xs-offset-9' %> <% end %>
+
+
+
+

Info

+
+
+

This the basic Backup configuration.

+

Your server is going to receive daily backups, on the selected hour and minute.

+

The backup plan is optimized to have the minimum overhead to your system, while maintaining a high performance restore system.

+

The most time consuming backup will be on the selected day.

+

You can alter this configuration later on according to your specific needs.

+
+
+