diff --git a/app/models/fileset.rb b/app/models/fileset.rb
index cd6c9bc..81835f1 100644
--- a/app/models/fileset.rb
+++ b/app/models/fileset.rb
@@ -1,107 +1,121 @@
 # Fileset model is the application representation of Bacula's Fileset.
 # It has references to a host and job templates.
 class Fileset < ActiveRecord::Base
   establish_connection ARCHIVING_CONF
 
   serialize :exclude_directions
   serialize :include_directions, JSON
 
   attr_accessor :include_files
 
   belongs_to :host
   has_many :job_templates
 
   validates :name, presence: true, uniqueness: { scope: :host }
   validate :has_included_files, on: :create
   validates_with NameValidator
 
   before_save :sanitize_exclude_directions, :sanitize_include_directions
 
   DEFAULT_EXCLUDED = %w{/var/lib/bacula /proc /tmp /.journal /.fsck /bacula}
   DEFAULT_INCLUDE_OPTIONS = { signature: :SHA1, compression: :GZIP }
   DEFAULT_INCLUDE_FILE_LIST = ['/']
 
   # Constructs an array where each element is a line for the Fileset's bacula config
   #
   # @return [Array]
   def to_bacula_config_array
     ['FileSet {'] +
       ["  Name = \"#{name_for_config}\""] +
       include_directions_to_config_array +
       exclude_directions_to_config_array +
       ['}']
   end
 
+  # Provides a human readable projection of the fileset
+  #
+  # @return [String]
+  def human_readable
+    result = "Directories:\n"
+    result << "\t* " << include_directions['file'].join("\n\t* ")
+    if exclude_directions.present?
+      result << "\n\nExcluded:\n"
+      result << "\t* " << exclude_directions.join("\n\t*")
+    end
+
+    result
+  end
+
   # Generates a name that will be used for the configuration file.
   # It is the name that will be sent to Bacula through the configuration
   # files.
   #
   # @return [String]
   def name_for_config
     [host.name, name].join(' ')
   end
 
   # Returns the hosts that have enabled jobs that use this fileset
   #
   # @return [ActiveRecord::Relation] the participating hosts
   def participating_hosts
     Host.joins(:job_templates).where(job_templates: { enabled: true, fileset_id: id }).uniq
   end
 
   private
 
   def has_included_files
     if include_files.blank? || include_files.all?(&:blank?)
       errors.add(:include_files, :cant_be_blank)
     end
   end
 
   def sanitize_include_directions
     files = include_files.compact.uniq.keep_if(&:present?)
     return false if files.blank?
 
     self.include_directions = { options: DEFAULT_INCLUDE_OPTIONS, file: files }
   end
 
   def sanitize_exclude_directions
     self.exclude_directions = exclude_directions.keep_if(&:present?).uniq rescue nil
   end
 
   def exclude_directions_to_config_array
     return [] if exclude_directions.empty?
     ['  Exclude {'] +
       exclude_directions.map { |x| "    File = \"#{x}\"" } +
       ['  }']
   end
 
   def include_directions_to_config_array
     return [] if include_directions.blank?
     ["  Include {"] +
       included_options +
       included_files +
       ['  }']
   end
 
   def included_options
     formatted = ["    Options {"]
     options = include_directions.deep_symbolize_keys[:options].
       reverse_merge(DEFAULT_INCLUDE_OPTIONS)
     options.each do |k,v|
       if not [:wildfile].include? k
         formatted <<  "      #{k} = #{v}"
       else
         formatted << v.map { |f| "      #{k} = \"#{f}\"" }
       end
     end
     formatted << "    }"
     formatted
   end
 
   def included_files
     include_directions['file'].map { |f| "    File = #{f}" }
   end
 
   def included_wildfile
     include_directions['wildfile'].map { |f| "   wildfile = \"#{f}\"" }.join("\n")
   end
 end
diff --git a/app/views/jobs/_fileset.html.erb b/app/views/jobs/_fileset.html.erb
index 784969f..1f25a96 100644
--- a/app/views/jobs/_fileset.html.erb
+++ b/app/views/jobs/_fileset.html.erb
@@ -1,20 +1,20 @@
 <% if job_id = (@job.try(:id) || @job_id) %>
   <% url_options = { job_id: job_id } %>
 <% else %>
   <% url_options = {} %>
 <% end %>
 
 <div class="panel panel-default">
   <div class="panel-heading">
     <h4>
       Fileset "<%= fileset.name %>"
       <%= link_to edit_host_fileset_path(@host, fileset.id, url_options) do %>
         <label class="glyphicon glyphicon-edit text-primary right"></label>
       <% end %>
     </h4>
   </div>
   <br />
   <pre>
-<%= fileset.to_bacula_config_array.join("\n") %>
+<%= fileset.human_readable %>
   </pre>
 </div>
diff --git a/app/views/jobs/_job_details.html.erb b/app/views/jobs/_job_details.html.erb
index 8919559..08cc79c 100644
--- a/app/views/jobs/_job_details.html.erb
+++ b/app/views/jobs/_job_details.html.erb
@@ -1,51 +1,51 @@
 <div class="col-xs-12">
   <div class="table-responsive">
     <table class="table table-striped table-bordered table-condensed">
       <tr>
         <td><b>Name</b></td>
         <td><%= @job.name %></td>
       </tr>
       <tr>
         <td><b>Type</b></td>
         <td><%= @job.job_type %></td>
       </tr>
       <tr>
         <td><b>Client</b></td>
         <td><%= @host.name %></td>
       </tr>
       <tr>
         <td><b>Fileset</b></td>
-        <td><pre><%= @job.fileset.to_bacula_config_array.join("\n") %></pre></td>
+        <td><pre><%= @job.fileset.human_readable %></pre></td>
       </tr>
       <% if @job.restore? %>
         <tr>
           <td><b>Restore Location</b></td>
           <td><%= @job.restore_location %></td>
         </tr>
       <% else %>
         <tr>
           <td><b>Schedule</b></td>
           <td>
             <pre><%= @job.schedule.to_bacula_config_array.join("\n") %></pre>
           </td>
         </tr>
       <% end %>
       <tr>
         <td><b>Client Run Before Job</b></td>
         <td><%= @job.client_before_run_file %></td>
       </tr>
       <tr>
         <td><b>Client Run After Job</b></td>
         <td><%= @job.client_after_run_file %></td>
       </tr>
       <tr>
         <td><b>Created</b></td>
         <td><%= I18n.l(@job.created_at, format: :long) %></td>
       </tr>
       <tr>
         <td><b>Enabled</b></td>
         <td><%= @job.enabled_human %></td>
       </tr>
     </table>
   </div>
 </div>
diff --git a/app/views/jobs/_modals.html.erb b/app/views/jobs/_modals.html.erb
index 83b0408..2b3107b 100644
--- a/app/views/jobs/_modals.html.erb
+++ b/app/views/jobs/_modals.html.erb
@@ -1,34 +1,34 @@
 <% @schedules.each do |schedule| %>
 
   <div class="modal fade js-schedule-<%= schedule.id %>" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
     <div class="modal-dialog">
       <div class="modal-content">
         <div class="panel panel-default">
           <div class="panel-heading">Schedule "<%= schedule.name %>"</div>
           <div class="panel-body">
             <pre>
 <%= schedule.to_bacula_config_array.join("\n") %>
             </pre>
           </div>
         </div>
       </div>
     </div>
   </div>
 <% end %>
 
 <% @filesets.each do |fileset| %>
   <div class="modal fade js-fileset-<%= fileset.id %>" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
     <div class="modal-dialog">
       <div class="modal-content">
         <div class="panel panel-default">
           <div class="panel-heading">Fileset "<%= fileset.name %>"</div>
           <div class="panel-body">
             <pre>
-<%= fileset.to_bacula_config_array.join("\n") %>
+<%= fileset.human_readable %>
             </pre>
           </div>
         </div>
       </div>
     </div>
   </div>
 <% end %>