Page MenuHomeGRNET

No OneTemporary

File Metadata

Created
Fri, Aug 29, 12:16 PM
diff --git a/app/views/jobs/edit.html.erb b/app/views/jobs/edit.html.erb
index 3786cc4..cc9f06d 100644
--- a/app/views/jobs/edit.html.erb
+++ b/app/views/jobs/edit.html.erb
@@ -1,24 +1,26 @@
<h1>Edit Job Template <%= @job.name %></h1>
<div class="row">
- <div class="col-xs-4">
+ <div class="col-lg-4 col-md-5 col-sm-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3> Job Attributes</h3>
</div>
<br />
- <%= render 'form' %>
+ <div class="panel-body">
+ <%= render 'form' %>
+ </div>
</div>
</div>
- <div class="col-xs-4">
+ <div class="col-lg-5 col-md-6 col-sm-6">
<div id="fileset">
<% fileset = @fileset || @job.fileset %>
<%= render partial: 'fileset', locals: { fileset: fileset } if fileset %>
</div>
<div id="schedule">
<% schedule = @schedule || @job.schedule %>
<%= render partial: 'schedule', locals: { schedule: schedule } if schedule %>
</div>
</div>
</div>
diff --git a/app/views/schedules/_level_explanation.html.erb b/app/views/schedules/_level_explanation.html.erb
index 9b94613..4ac87f3 100644
--- a/app/views/schedules/_level_explanation.html.erb
+++ b/app/views/schedules/_level_explanation.html.erb
@@ -1,24 +1,24 @@
-<div class="col-xs-5">
+<div class="col-md-5 col-xs-12">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>Level Explanation</h4>
</div>
<br />
<div class="panel-body">
<h4>Full</h4>
<p> When the Level is set to Full all files in the FileSet whether or not they have changed will be backed up.</p>
<h4>Differential</h4>
<p>When the Level is set to Differential all files specified in the FileSet that have changed since the last successful Full backup of the same Job will be backed up.</p>
<p>If there is no successful previous Full backup, a Differential backup is upgraded to a Full backup.</p>
<h4>Incremental</h4>
<p>When the Level is set to Incremental all files specified in the FileSet that have changed since the last successful backup of the the same Job using the same FileSet and Client, will be backed up.<p>
<p>If there is no successful previous Full backup, an Incremental backup is upgraded to a Full backup.</p>
</div>
</div>
</div>
</div>
</div>
diff --git a/app/views/schedules/edit.html.erb b/app/views/schedules/edit.html.erb
index 10e892e..b917628 100644
--- a/app/views/schedules/edit.html.erb
+++ b/app/views/schedules/edit.html.erb
@@ -1,13 +1,13 @@
-<div class="col-xs-5">
+<div class="col-lg-5 col-md-7 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>Edit Schedule</h4>
</div>
<%= render partial: 'form',
locals: { url: host_schedule_path(@host, @schedule.id, job_id: @job_id),
method: :patch } %>
</div>
</div>
<%= render partial: 'level_explanation' %>

Event Timeline