Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F886104
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Aug 8, 8:44 PM
Size
1 KB
Mime Type
text/x-diff
Expires
Sun, Aug 10, 8:44 PM (21 h, 38 m)
Engine
blob
Format
Raw Data
Handle
246057
Attached To
rARCHIVING archiving
View Options
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 @@
<div class="row">
<div class="col-xs-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3>New Client Config</h3>
</div>
<div class="panel-body">
<%= 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 %>
<hr />
<%= 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 %>
</div>
</div>
</div>
+ <div class="col-xs-4">
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ <h3>Info</h3>
+ </div>
+ <div class="panel-body">
+ <p>This the basic Backup configuration.</p>
+ <p>Your server is going to receive daily backups, on the selected <strong>hour</strong> and <strong>minute</strong>.</p>
+ <p>The backup plan is optimized to have the minimum overhead to your system, while maintaining a high performance restore system.</p>
+ <p>The most time consuming backup will be on the selected <strong>day</strong>.</p>
+ <p>You can alter this configuration later on according to your specific needs.</p>
+ </div>
+ </div>
+ </div>
</div>
Event Timeline
Log In to Comment