Simple re-ordering and visibility

The template structure is complex, but re-ordering or removing the big parts is in fact very easy. In this example, we will put the signature block just after the header, and remove the chromatography parameters and the SST.

  1. If you don’t have an user template yet, please first duplicate an existing template (see Report templates).

  2. Then download it to an empty folder. You will get a file structure like in Report temporary files structure (expect that neither PDF file or index.html would be present).

  3. Edit the report.html file:

    {{> header}}
    {{> sequenceTable}}
    {{> systemSetup}}
    {{> chromatography}}
    {{> systemSuitabilityTests}}
    {{> dataAcquisition}}
    {{> evaluationsList}}
    {{> remarks}}
    {{> signature}}
    
  4. Put the signature after the header:

    {{> header}}
    {{> signature}}
    {{> sequenceTable}}
    {{> systemSetup}}
    {{> chromatography}}
    {{> systemSuitabilityTests}}
    {{> dataAcquisition}}
    {{> evaluationsList}}
    {{> remarks}}
    
  5. Remove the chromatography and systemSuitabilityTests parts:

    {{> header}}
    {{> signature}}
    {{> sequenceTable}}
    {{> systemSetup}}
    {{> dataAcquisition}}
    {{> evaluationsList}}
    {{> remarks}}
    
  6. Upload the template in visionCATS and try it.