# File lib/kwala/actions/code_formatting.rb, line 91
  def detailed_display(context)
    template = TemplateFile.new(self.class.detailed_template_file)

    context.amrita_data[:code_formatting_details] = {
      :entry => @receiver.details
    }

    det_res = ProjectBuilderUtils.expand_template(template,
                                                  context.amrita_data)

    base_output_name = "#{ context.output_directory}/#{ context.project_name }"
    det_file = base_output_name + "_code_formatting.html"

    [det_file, det_res]
  end