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 @@

Edit Job Template <%= @job.name %>

-
+

Job Attributes


- <%= render 'form' %> +
+ <%= render 'form' %> +
-
+
<% fileset = @fileset || @job.fileset %> <%= render partial: 'fileset', locals: { fileset: fileset } if fileset %>
<% schedule = @schedule || @job.schedule %> <%= render partial: 'schedule', locals: { schedule: schedule } if schedule %>
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 @@ -
+

Level Explanation


Full

When the Level is set to Full all files in the FileSet whether or not they have changed will be backed up.

Differential

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.

If there is no successful previous Full backup, a Differential backup is upgraded to a Full backup.

Incremental

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.

If there is no successful previous Full backup, an Incremental backup is upgraded to a Full backup.

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 @@ -
+

Edit Schedule

<%= render partial: 'form', locals: { url: host_schedule_path(@host, @schedule.id, job_id: @job_id), method: :patch } %>
<%= render partial: 'level_explanation' %>