- Welcome to the Knowledge Base
- Introduction
- Training
- Getting Started
- Preferences
- Activities
- Cases
- Forecasts & Quotas
- Importing Data
- Leads
-
Marketing
- Introduction to Marketing
- Marketing Campaigns
- Mailing Lists
- Products
- Mailshots
- Upload Library
- Templates
- Event Management
- Compliance Records
-
Spotler Integration
- What is Spotler?
- Navigating your Spotler homepage
- GatorMail
-
GatorLeads / Web Insights
- Tracking Code
- Setting up the Plugin
- Viewing Web Insights Data on your Form Layouts
- Domain Names and Online Activities
- Reporting incorrect Leads created through Web Insights
- Reporting on Web Insights data
- Using UTM Values
- Why aren’t Online Activities being created in the database?
- Why is GatorLeads recording online activities in a foreign language?
- GatorSurvey
- GatorWorkflow
- GatorPopup
- Opportunities
-
Integrations
- Mapping
- Electronic Signing Tools
- Creditsafe Integration
-
Zapier
- Introduction to Zapier
- Available Triggers and Actions
- Linking your Workbooks Account to Zapier
-
Setting up Zaps
- Posted Invoices to Xero Invoices
- Xero payments to Workbooks Tasks
- New Case to Google Drive folder
- New Case to Basecamp Project
- New Workbooks Case to JIRA Ticket
- Jira Issue to new Case
- 123FormBuilder Form Entry to Case
- Eventbrite Attendee to Sales Lead and Task
- Facebook Ad Leads to Sales Leads
- Wufoo Form Entry to Sales Lead
- Posted Credit Note to Task
- QuickBooks Online
- Survey Monkey responses to Tasks
- Multistep Zaps
-
Email Integrations
- Email Dropbox
- Workbooks Exchange Server Sync
- Workbooks Outlook Connector
- RevenueGrid Intelligence and Engage
-
Event & Webinar Integration Tools
- GoToWebinar
- ON24
- Microsoft Office
-
Outreach
- Installation
- Outreach Authentication
- Sync People to Outreach Prospects
- Sync Organisations to Outreach Accounts
- Sync Workbooks Opportunities to Outreach
- Sync Tasks/Activities from Workbooks to Outreach
- Sync Outreach Sequences to Workbooks
- Sync Outreach Sequence States to Workbooks
- Sync Outreach Sequence Step Numbers to Workbooks
- Sync Prospects/Accounts/Opportunities from Outreach to Workbooks
- Sync Outreach Tasks/Calls/Meetings to Workbooks
- Scribe/Workbooks Connector
- RingCentral
- Auditing
- Comments
- People & Organisations
- Projects
-
Reporting
- Introduction to Reporting
- Using Reports
- Charts
- Exporting Reports
- Advanced Reporting
- Report Snapshots
- Dashboards
-
Transaction Documents
-
Introduction to Transaction Documents
- Displaying & Adding Transaction Documents
- Copying Transaction Documents
- Transaction Documents Fields Help
- Transaction Documents Line Items Help
- Printing & Sending Transaction Documents
- Managing Transaction Document Currencies
- Managing Transaction Document Statuses
- Setting a Blank Default Currency on Transaction Documents
- Credit Notes
- Customer Orders
- Invoices
- Quotations
- Supplier Orders
- Contract Management
- Sagelink
-
Introduction to Transaction Documents
- Auditing
-
Configuration
- Introduction to System Administration
- Users & Security
- Preferences
- Database
- Accounting
- Email & Integration
-
Customisation
- Creating & Modifying Picklists
- Theme
-
Record Types
- Creating Custom Fields
- Report-based Custom Fields
- Linked Fields & Reference Fields
- Record Templates
- Form Layouts
- Customising relationships between parties
- Opportunity Stages
- Custom Records
- Automation
- PDF Configuration
- Contact Support
- Releases & Roadmap
Creating a Template to show multiple lines
You can create a template which, when applied, displays multiple lines for the same placeholder if the record contains multiple lines. For example, you might want to display all the Activities for a particular Person, or all the Line Items for an Opportunity, or all of the Relationships and so on. These examples are described below.
A Person Template that shows all the Activities for that Person
Click Start > Marketing > Templates > New Template > A specific record type > People.
Enter a Name and, if required, a Subject.
Construct the body of the Template as normal, using placeholders if required.
Where you want the Activities to appear, add a table by clicking on the table icon in the formatting toolbar.
Add the placeholders you require within the table using the Fields chooser. For example, you might want to see the Subject and Type, the Due Date and the Status of the Activities, as shown in the screenshot below (click to enlarge).
The next step involves editing the HTML so that when the Template is applied against a Person record, it creates a row for each Activity associated with that Person. To do this, click the HTML button in the formatting toolbar. Scroll down to you can see the body of the table, which is highlighted yellow in the screenshot below between <tbody> and </tbody>.
After <tbody add the following text:
class="wb_iterate activities"
so that the line now shows <tbody class="wb_iterate activities">, as highlighted below.
Making this change won't make any difference to the way the text appears when you switch back to text view but when the template's used on a Person record, it will display a row of data for each Activity for that Person, as shown below.
An Opportunity Template that shows all the Line Items for that Opportunity
Click Start > Marketing > Templates > New Template > A specific record type > Opportunities.
Enter a Name and, if required, a Subject.
Construct the body of the Template as normal, using placeholders if required.
Where you want the Line Items to appear, add a table by clicking on the table icon in the formatting toolbar. Add the placeholders you require within the table using the Fields chooser. For example, you might want to see the Line Description, the Unit Price, the Quantity and the Gross Amount, as shown in the screenshot below (click to enlarge).
The next step involves editing the HTML so that when the Template is applied against an Opportunity record, it creates a row for each Line Item on that Opportunity. To do this, click the HTML button in the formatting toolbar. Scroll down to you can see the body of the table, (between <tbody> and </tbody>). After <tbody add the following text:
class="wb_iterate order_line_items"
so that the line now shows <tbody class="wb_iterate order_line_items">, as highlighted below.
Making this change won't make any difference to the way the text appears when you switch back to text view but when the template's used on an Opportunity record, it will display a row of data for each Line Item on that Opportunity, as shown below.
Relationships
To show the relationships of a particular record, use class="wb_iterate object_class" where object is the record you are starting from (organisation or person) and class is the relationship name (e.g. partners or employees).
i.e. to list all Partners related to a Person you would use class="wb_iterate person_partners"
Related content