Where Do I Find Standard Print Formats
Standard Print formats are auto generated from the layout of the DocType. You can customize the standard format by
1. Customizing Standard Print
Go to Setup > Customize > Customize Form View and you can:
- Re-arranging fields by dragging and dropping
- Add static elements by adding HTML type fields and adding your HTML in Options
- Hiding fields by setting the Print Hide property
2. Creating new layouts based on Print Formats
As there are not templates that are generated for standard Print Formats, you will have to create new templates from scratch using the Jinja Templating Language via
Setup > Printing and Branding > Print Format
- See Print Format help .
- You can use the Bootstrap CSS framework to layout your print formats
Tip: You can import Standard Template macros for building your print formats.
Example, adding the standard header:
{%- from "templates/print\_formats/standard\_macros.html" import add\_header -%}
{{ add\_header() }}